Files
2026-04-23 19:15:02 +02:00

26 lines
507 B
C#

namespace MP.Core.Objects
{
public class MachDataItem
{
public enum DataItemCategory
{
CONDITION = 0,
EVENT = 1,
SAMPLE = 2
}
public string Uuid { get; set; } = "";
public DataItemCategory Category { get; set; }
public string? Name { get; set; } = "";
public string? SubType { get; set; } = "";
public string? Type { get; set; } = "";
public string? Units { get; set; } = "";
}
}