26 lines
507 B
C#
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; } = "";
|
|
|
|
}
|
|
}
|