Thor/Thor.Shared/Visit/InspectionEntry.cs
2025-09-03 04:25:16 +02:00

23 lines
560 B
C#

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;
}