add PropertyObject & PropertyValue, move to Pilz, make everything .net 8 only

This commit is contained in:
Pilzinsel64
2025-04-02 07:25:41 +02:00
parent 91e1987d75
commit 9a17cd4e9e
27 changed files with 136 additions and 30 deletions

6
Pilz/Data/IDataObject.cs Normal file
View File

@@ -0,0 +1,6 @@
namespace Pilz.Data;
public interface IDataObject
{
public int Id { get; }
}