mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-13 19:23:46 +00:00
12 lines
243 B
C#
12 lines
243 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Day_04
|
|
{
|
|
public class Day
|
|
{
|
|
public string Date { get; set; }
|
|
public int GuardId { get; set; }
|
|
public List<bool> IsAsleepThisMinute { get; set; }
|
|
}
|
|
} |