Files
AdventOfCode/AdventOfCode/Runner/Attributes/ProblemInfoAttribute.cs
Amatsugu dbdd716f05 Updates to Runner
Added Previous years of AOC
2022-12-04 13:57:15 -05:00

13 lines
302 B
C#

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