jellyfin/MediaBrowser.Controller/Chapters/IChapterManager.cs

25 lines
660 B
C#
Raw Normal View History

2016-10-05 09:15:29 +02:00
using System.Collections.Generic;
2014-06-09 21:16:14 +02:00
using System.Threading.Tasks;
2014-06-10 19:36:06 +02:00
using MediaBrowser.Model.Entities;
2014-06-09 21:16:14 +02:00
namespace MediaBrowser.Controller.Chapters
{
/// <summary>
/// Interface IChapterManager
/// </summary>
public interface IChapterManager
{
2014-06-10 19:36:06 +02:00
/// <summary>
/// Gets the chapters.
/// </summary>
/// <param name="itemId">The item identifier.</param>
/// <returns>List{ChapterInfo}.</returns>
List<ChapterInfo> GetChapters(string itemId);
2014-06-10 19:36:06 +02:00
/// <summary>
/// Saves the chapters.
/// </summary>
void SaveChapters(string itemId, List<ChapterInfo> chapters);
2014-06-09 21:16:14 +02:00
}
}