Add project files.

This commit is contained in:
2022-11-28 22:54:49 -05:00
parent dd97a677bb
commit c0c9e45e49
20 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace AOC.Shared
{
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;
}
}
}