Thor/Thor.Shared/Inspect/InspectionRow.cs
2025-03-21 07:19:48 +01:00

23 lines
422 B
C#

namespace Thor.Shared.Inspect;
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;
}