Thor/Thor.Shared/InspectionRow.cs
2025-02-10 18:38:27 +01:00

23 lines
414 B
C#

namespace Thor.Shared;
public class InspectionRow
{
public InspectionRow(Item item)
{
Item = item;
}
public InspectionRow(Item item, ItemAnswer answer)
{
Item = item;
Answer = answer;
}
public Item Item { get; }
public ItemAnswer Answer { get; } = new ItemAnswer();
public bool IsTitle => Item is ItemTitle;
public int Order => Item.Order;
}