21 lines
356 B
C#
21 lines
356 B
C#
namespace Thor.Shared;
|
|
|
|
|
|
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<Entry> Entries { get; } = new();
|
|
}
|