mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
17 lines
384 B
C#
17 lines
384 B
C#
using System.Collections.Generic;
|
|
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);
|
|
}
|
|
}
|