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