10 lines
272 B
C#
10 lines
272 B
C#
namespace Pilz.Collections.SimpleHistory;
|
|
|
|
public class ObjectBase
|
|
{
|
|
public static int DefaultPriorityValue { get; set; } = 1000;
|
|
|
|
public int UndoPriority { get; set; } = DefaultPriorityValue;
|
|
|
|
public int RedoPriority { get; set; } = DefaultPriorityValue;
|
|
} |