chore(*): Move old solutions into a separate folder

This commit is contained in:
Josh Creek
2023-11-30 12:51:45 +00:00
parent ed3eb9cb54
commit b78d79a3af
117 changed files with 141 additions and 141 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
namespace Day_04
{
public class Guard
{
public int GuardId { get; set; }
public int TotalMinutesAsleep { get; set; }
public List<int> TimesSleptPerMinute { get; set; }
}
}