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

12 lines
259 B
C#

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; }
}
}