IChapterManager.cs 606 B

1234567891011121314151617181920212223
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using MediaBrowser.Model.Entities;
  4. namespace MediaBrowser.Controller.Chapters
  5. {
  6. /// <summary>
  7. /// Interface IChapterManager
  8. /// </summary>
  9. public interface IChapterManager
  10. {
  11. /// <summary>
  12. /// Gets the chapters.
  13. /// </summary>
  14. /// <param name="itemId">The item identifier.</param>
  15. /// <returns>List{ChapterInfo}.</returns>
  16. /// <summary>
  17. /// Saves the chapters.
  18. /// </summary>
  19. void SaveChapters(string itemId, List<ChapterInfo> chapters);
  20. }
  21. }