| 12345678910111213141516 | using System.Collections.Generic;using MediaBrowser.Model.Entities;namespace MediaBrowser.Controller.Chapters{    /// <summary>    /// Interface IChapterManager    /// </summary>    public interface IChapterManager    {        /// <summary>        /// Saves the chapters.        /// </summary>        void SaveChapters(string itemId, List<ChapterInfo> chapters);    }}
 |