jellyfin/MediaBrowser.Controller/Chapters/IChapterManager.cs

20 lines
521 B
C#
Raw Normal View History

2020-02-23 10:53:51 +01:00
using System;
using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Chapters
{
/// <summary>
2020-02-23 10:53:51 +01:00
/// Interface IChapterManager.
2018-12-28 00:27:57 +01: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 10:53:51 +01:00
void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters);
2018-12-28 00:27:57 +01:00
}
}