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