2020-02-23 10:53:51 +01:00
|
|
|
using System;
|
2019-01-13 21:01:16 +01:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 18:27:57 -05:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Chapters
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2020-02-23 10:53:51 +01:00
|
|
|
/// Interface IChapterManager.
|
2018-12-27 18:27:57 -05:00
|
|
|
/// </summary>
|
|
|
|
|
public interface IChapterManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the chapters.
|
|
|
|
|
/// </summary>
|
2021-07-24 20:33:58 -07:00
|
|
|
/// <param name="itemId">The item.</param>
|
|
|
|
|
/// <param name="chapters">The set of chapters.</param>
|
2020-02-23 10:53:51 +01:00
|
|
|
void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters);
|
2018-12-27 18:27:57 -05:00
|
|
|
}
|
|
|
|
|
}
|