jellyfin/MediaBrowser.Controller/Chapters/ChapterResponse.cs

19 lines
459 B
C#
Raw Normal View History

2014-05-12 00:38:10 +02:00
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>();
}
}
}