Files
AdventOfCode/AOC Runner/ProblemInfoAttribute.cs
2022-11-28 22:54:49 -05:00

13 lines
288 B
C#

namespace AOC.Runner;
public class ProblemInfoAttribute : Attribute
{
public int Day { get; init; }
public string Year { get; init; }
public string Name { get; init; }
public ProblemInfoAttribute(string year, int day, string name)
{
Year = year;
Day = day;
Name = name;
}
}