Newsbot.Collector/Newsbot.Collector.Services/HtmlParser/HtmlParserModels.cs
James Tombleson aa53b1eeeb
Features/testing discord queue (#8)
* new seed and corrected some issues talking to the db

* adding some prep work for adding youtube back again

* small updates for rss and getting results from discord job

* new command to reload db

* added discord alerts job to hangfire
2023-03-05 22:33:41 -08:00

19 lines
550 B
C#

namespace Newsbot.Collector.Services.HtmlParser;
public class HeadParserModel
{
public string Title { get; set; } = "";
public string Description { get; set; } = "";
public string Image { get; set; } = "";
public string Url { get; set; } = "";
public string PageType { get; set; } = "";
public string ColorTheme { get; set; } = "";
public string? FeedUri { get; set; }
public string? YoutubeChannelID { get; set; }
}
public class HtmlData
{
public HeadParserModel Header { get; set; } = new HeadParserModel();
}