namespace Thor.Shared.Visit; 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; }