#pragma warning disable CS8618 using HtmlAgilityPack; namespace newsletter { public class Report { /// ///gets embedded in the web page. reporter should have this be a div, and assembler will add classes and attributes or whatever /// public HtmlNode ReportContent { get; set; } /// ///if I ever hook this up to TTS, this is the text that will be spoken /// public string TextSummary { get; set; } } }