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

21 lines
372 B
C#

namespace Thor.Shared.Visit;
public class ItemAnswer
{
public enum State
{
NotAnswed,
Compliant,
PartiallyCompliant,
Improper,
Invalid,
Ignored,
}
public string TargetId { get; set; }
public State CurrentState { get; set; } = State.NotAnswed;
List<InspectionEntry> Entries { get; } = new();
}