2026-06-24 14:25:32 +01:00

8 lines
133 B
C#

namespace Solicitors.HtmlParsing;
using Models;
public interface IHtmlParser
{
IEnumerable<IHtmlNode> ParseHtml(string html);
}