2013-12-02 16:46:25 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities.Movies
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BoxSet
|
|
|
|
|
/// </summary>
|
2013-12-05 16:50:21 +00:00
|
|
|
|
public class BoxSet : Folder, IHasTrailers, IHasTags
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-12-02 16:46:25 +00:00
|
|
|
|
public BoxSet()
|
|
|
|
|
{
|
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2013-12-05 16:50:21 +00:00
|
|
|
|
Tags = new List<string>();
|
2013-12-02 16:46:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the remote trailers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The remote trailers.</value>
|
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
2013-12-05 16:50:21 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tags.</value>
|
|
|
|
|
public List<string> Tags { get; set; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|