IChapterManager.cs 384 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using MediaBrowser.Model.Entities;
  3. namespace MediaBrowser.Controller.Chapters
  4. {
  5. /// <summary>
  6. /// Interface IChapterManager
  7. /// </summary>
  8. public interface IChapterManager
  9. {
  10. /// <summary>
  11. /// Saves the chapters.
  12. /// </summary>
  13. void SaveChapters(string itemId, List<ChapterInfo> chapters);
  14. }
  15. }