using HtmlAgilityPack; using System.Threading.Tasks; namespace newsletter.Reporters { public class Dummy : Reporter { #pragma warning disable CS1998 public override async Task Report(Configuration.Reporter config) { return new Report() { ReportContent = HtmlNode.CreateNode($"
dummy node for testing purposes. Url: {config.Url}, Username: {config.Username}, Password: {config.Password}.
"), TextSummary = "dummy text for testing purposes" }; } #pragma warning restore CS1998 } }