refactor: add IEpubReader interface for content streaming
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user