Files
Pilz/Pilz.Collections/SimpleHistory/ObjectBase.cs
2020-09-24 11:21:53 +02:00

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;
}
}