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; }