Thor/Thor.Shared/Inspect/InspectionEntry.cs
2025-03-21 07:19:48 +01:00

23 lines
562 B
C#

namespace Thor.Shared.Inspect;
public class InspectionEntry
: EntryBase
{
public enum EntryType
{
Set,
Comment,
Observation,
Attachement,
Show
}
public EntryType Type { get; set; }
public ItemAnswer.State? State { get; set; } = null;
public string? Content { get; set; } = null;
public string? Observation { get; set; } = null;
public byte[]? Attachment { get; set; } = null;
public string? AttachmentName { get; set; } = null;
public bool? Display { get; set; } = null;
}