convert Pilz.Collections to c#

This commit is contained in:
Pascal Schedel
2024-10-21 09:12:54 +02:00
parent 66b270fc17
commit 34c4f1c727
20 changed files with 1288 additions and 1049 deletions

View File

@@ -0,0 +1,10 @@
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;
}