mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-12 18:53:47 +00:00
chore(*): Move old solutions into a separate folder
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user