James Tombleson
aa53b1eeeb
* 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
19 lines
550 B
C#
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();
|
|
} |