jellyfin/MediaBrowser.Controller/Chapters/IChapterManager.cs

20 lines
521 B
C#
Raw Normal View History

2020-02-23 04:53:51 -05:00
using System;
using System.Collections.Generic;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Chapters
{
/// <summary>
2020-02-23 04:53:51 -05:00
/// Interface IChapterManager.
2018-12-27 18:27:57 -05:00
/// </summary>
public interface IChapterManager
{
/// <summary>
/// Saves the chapters.
/// </summary>
/// <param name="itemId">The item.</param>
/// <param name="chapters">The set of chapters.</param>
2020-02-23 04:53:51 -05:00
void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters);
2018-12-27 18:27:57 -05:00
}
}