10 lines
297 B
C#
10 lines
297 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;
|
|
}
|
|
} |