using System; using System.Collections.Generic; namespace Day_03 { public class Claim { public int ClaimId { get; set; } public bool CellsUsedMoreThanOnce { get; set; } } }