8 lines
133 B
C#
8 lines
133 B
C#
namespace Solicitors.HtmlParsing;
|
|
|
|
using Models;
|
|
|
|
public interface IHtmlParser
|
|
{
|
|
IEnumerable<IHtmlNode> ParseHtml(string html);
|
|
} |