aoc2017/csharp/BScottSolution.cs

16 lines
285 B
C#
Raw Normal View History

2018-12-22 12:50:18 -06:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AOC2017
{
abstract class BScottSolution
{
public abstract string Name { get; }
public abstract void Run();
}
}