mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-12 18:53:47 +00:00
11 lines
204 B
C#
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; }
|
|
}
|
|
} |