newsletter/Reporters/Reporter.cs
Adam R Grey 72d6e1e254 this is my favorite style, though always a pain
reflect derived types, then instantiate. No registration, just derive :)
2023-03-22 12:21:38 -04:00

9 lines
188 B
C#

using System.Threading.Tasks;
namespace newsletter.Reporters
{
public abstract class Reporter
{
public abstract Task<Report> Report(Configuration.Reporter config);
}
}