Refactored to add a class and handle part 2

This commit is contained in:
Josh Creek
2019-10-14 16:57:59 +01:00
parent e971e4dcd4
commit 7132535568
3 changed files with 77 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace Day_03
{
public class Claim
{
public int ClaimId { get; set; }
public bool CellsUsedMoreThanOnce { get; set; }
}
}