23 lines
562 B
C#
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;
|
|
} |