jellyfin/MediaBrowser.Controller/Chapters/IChapterManager.cs

17 lines
384 B
C#
Raw Normal View History

using System.Collections.Generic;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Chapters
{
/// <summary>
/// Interface IChapterManager
/// </summary>
public interface IChapterManager
{
/// <summary>
/// Saves the chapters.
/// </summary>
void SaveChapters(string itemId, List<ChapterInfo> chapters);
}
}