using MediaBrowser.Model.Chapters;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Chapters
{
    public class ChapterResponse
    {
        /// 
        /// Gets or sets the chapters.
        /// 
        /// The chapters.
        public List Chapters { get; set; }
        public ChapterResponse()
        {
            Chapters = new List();
        }
    }
}