Files
WebNovelPortal/WebNovelPortalAPI/Scrapers/IScraper.cs

11 lines
239 B
C#

using DBConnection.Models;
namespace WebNovelPortalAPI.Scrapers;
public interface IScraper
{
public bool MatchesUrl(string url);
public Novel ScrapeNovel(string url);
public string? ScrapeChapterContent(string chapterUrl);
}