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

12 lines
235 B
C#

using System;
using System.Collections.Generic;
namespace Day_04
{
public class Action
{
public string Date { get; set; }
public string Time { get; set; }
public string Description { get; set; }
}
}