Added NatoManga page provider logic. Fixed UI font configuration.

This commit is contained in:
2025-06-09 09:58:23 -04:00
parent c26ed11bfc
commit 000a20bb0f
7 changed files with 100 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
using MangaReader.Core.Sources;
namespace MangaReader.Core.Pages;
public interface IMangaPageProvider : IMangaSourceComponent
{
Task<IReadOnlyList<string>> GetPageImageUrlsAsync(string chapterUrl, CancellationToken cancellationToken);
}