Files
Nexus.Reader/src/NexusReader.Application/Abstractions/Services/IEpubService.cs
T

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);
}