mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 14:53:38 +00:00
14 lines
306 B
C#
14 lines
306 B
C#
|
|
using HtmlAgilityPack;
|
||
|
|
|
||
|
|
namespace AIStudio.Tools;
|
||
|
|
|
||
|
|
public sealed class HTMLParserWebPage
|
||
|
|
{
|
||
|
|
public required Uri RequestedUrl { get; init; }
|
||
|
|
|
||
|
|
public required Uri FinalUrl { get; init; }
|
||
|
|
|
||
|
|
public required string ContentType { get; init; }
|
||
|
|
|
||
|
|
public required HtmlDocument Document { get; init; }
|
||
|
|
}
|