newsletter/Report.cs

17 lines
516 B
C#
Raw Permalink Normal View History

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