Files
TinyInvoice/Server/Model/Enum.cs
Andre Beging de76b1d432 Init
2024-11-06 16:00:26 +01:00

8 lines
110 B
C#

namespace Server.Model
{
public enum RecordState
{
Default = 0,
Deleted = 1
}
}