mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
19 lines
459 B
C#
19 lines
459 B
C#
|
|
using MediaBrowser.Model.Chapters;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Controller.Chapters
|
|||
|
|
{
|
|||
|
|
public class ChapterResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the chapters.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <value>The chapters.</value>
|
|||
|
|
public List<RemoteChapterInfo> Chapters { get; set; }
|
|||
|
|
|
|||
|
|
public ChapterResponse()
|
|||
|
|
{
|
|||
|
|
Chapters = new List<RemoteChapterInfo>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|