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