mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07: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>();
|
|
}
|
|
}
|
|
} |