2
0

IChapterManager.cs 521 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  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. /// Saves the chapters.
  13. /// </summary>
  14. /// <param name="itemId">The item.</param>
  15. /// <param name="chapters">The set of chapters.</param>
  16. void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters);
  17. }
  18. }