using System; using MediaBrowser.Model.Entities; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities.Movies { /// /// Class BoxSet /// public class BoxSet : Folder, IHasTrailers { public BoxSet() { RemoteTrailers = new List(); LocalTrailerIds = new List(); } public List LocalTrailerIds { get; set; } /// /// Gets or sets the remote trailers. /// /// The remote trailers. public List RemoteTrailers { get; set; } } }