1234567891011121314151617181920 |
- using System.Collections.Generic;
- using GxPress.Request.Media;
- using GxPress.Result.Media;
- namespace GxPress.Service.Interface.Epub
- {
- public interface IEpubService : IService
- {
- /// <summary>
- /// 获取书籍目录
- /// </summary>
- List<BookCatalogResult> GetCatalog(string path);
- /// <summary>
- /// 获取章节内容
- /// </summary>
- /// <returns></returns>
- string GetBookCatalogContext(BookCatalogRequest request);
- }
- }
|