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