18 lines
500 B
C#
18 lines
500 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 class HtmlData
|
||
|
{
|
||
|
public HeadParserModel Header { get; set; } = new HeadParserModel();
|
||
|
}
|