using System.Collections.Generic;
using System.Threading.Tasks;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Chapters
{
    /// 
    /// Interface IChapterManager
    /// 
    public interface IChapterManager
    {
        /// 
        /// Gets the chapters.
        /// 
        /// The item identifier.
        /// List{ChapterInfo}.
        List GetChapters(string itemId);
        /// 
        /// Saves the chapters.
        /// 
        void SaveChapters(string itemId, List chapters);
    }
}