10 lines
237 B
C#
10 lines
237 B
C#
using FluentResults;
|
|
using NexusReader.Application.Queries.Reader;
|
|
|
|
namespace NexusReader.Application.Abstractions.Services;
|
|
|
|
public interface IEpubService
|
|
{
|
|
Task<Result<ReaderPageViewModel>> GetEpubContentAsync(int chapterIndex);
|
|
}
|