newsletter/Reporters/Reporter.cs

9 lines
188 B
C#
Raw Normal View History

2023-03-22 11:03:06 -04:00
using System.Threading.Tasks;
namespace newsletter.Reporters
{
public abstract class Reporter
2023-03-22 11:03:06 -04:00
{
public abstract Task<Report> Report(Configuration.Reporter config);
2023-03-22 11:03:06 -04:00
}
}