15 lines
274 B
C#
15 lines
274 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AoC2018.Solutions
|
|||
|
{
|
|||
|
public abstract class Solution
|
|||
|
{
|
|||
|
public abstract string Title { get; }
|
|||
|
public abstract int Day { get; }
|
|||
|
|
|||
|
public abstract void Run();
|
|||
|
}
|
|||
|
}
|