2026-06-23 19:03:31 +01:00

8 lines
133 B
C#

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