11 lines
251 B
C#
11 lines
251 B
C#
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);
|
|
|
|
} |