newsletter/Reporters/Reporter.cs

9 lines
167 B
C#
Raw Normal View History

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