using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Chapters
{
///
/// Interface IChapterManager.
///
public interface IChapterManager
{
///
/// Saves the chapters.
///
/// The item.
/// The set of chapters.
void SaveChapters(Guid itemId, IReadOnlyList chapters);
}
}