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