refactor: add IEpubReader interface for content streaming

This commit is contained in:
2026-05-11 18:08:37 +00:00
parent d704aed8f1
commit 7b44ac585b
@@ -0,0 +1,9 @@
using FluentResults;
using NexusReader.Application.Queries.Reader;
namespace NexusReader.Application.Abstractions.Services;
public interface IEpubReader
{
Task<Result<ReaderPageViewModel>> GetEpubContentAsync(int chapterIndex, string? userId = null);
}