Files
advent-of-code/old/2018/Day 03/Claim.cs
T
2023-11-30 12:51:45 +00:00

11 lines
204 B
C#

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