using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Request.Media; using GxPress.Result.Media; namespace GxPress.Service.Interface.Epub { public interface IEpubService : IService { /// /// 获取书籍目录 /// List GetCatalog(string path); /// /// 获取章节内容 /// /// Task GetBookCatalogContent(BookCatalogRequest request); } }