jellyfin/MediaBrowser.Controller/Chapters/IChapterManager.cs

25 lines
667 B
C#
Raw Normal View History

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