|
|
@ -69,7 +69,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The primary image path.</value>
|
|
|
|
/// <value>The primary image path.</value>
|
|
|
|
[IgnoreDataMember]
|
|
|
|
[IgnoreDataMember]
|
|
|
|
public virtual string PrimaryImagePath
|
|
|
|
public string PrimaryImagePath
|
|
|
|
{
|
|
|
|
{
|
|
|
|
get { return GetImage(ImageType.Primary); }
|
|
|
|
get { return GetImage(ImageType.Primary); }
|
|
|
|
set { SetImage(ImageType.Primary, value); }
|
|
|
|
set { SetImage(ImageType.Primary, value); }
|
|
|
@ -79,7 +79,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
/// Gets or sets the images.
|
|
|
|
/// Gets or sets the images.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The images.</value>
|
|
|
|
/// <value>The images.</value>
|
|
|
|
public Dictionary<string, string> Images { get; set; }
|
|
|
|
public virtual Dictionary<string, string> Images { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the date created.
|
|
|
|
/// Gets or sets the date created.
|
|
|
@ -546,6 +546,12 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
/// <value>The studios.</value>
|
|
|
|
/// <value>The studios.</value>
|
|
|
|
public virtual List<string> Studios { get; set; }
|
|
|
|
public virtual List<string> Studios { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Gets or sets the publishers.
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <value>The publishers.</value>
|
|
|
|
|
|
|
|
public virtual List<string> Publishers { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the genres.
|
|
|
|
/// Gets or sets the genres.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -996,7 +1002,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException();
|
|
|
|
throw new ArgumentNullException("name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (Studios == null)
|
|
|
|
if (Studios == null)
|
|
|
@ -1010,6 +1016,47 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Adds the publishers.
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <param name="publishers">The publishers.</param>
|
|
|
|
|
|
|
|
/// <exception cref="System.ArgumentNullException"></exception>
|
|
|
|
|
|
|
|
public void AddPublishers(IEnumerable<string> publishers)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (publishers == null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new ArgumentNullException();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var name in publishers)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
AddPublisher(name);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Adds the publisher.
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
|
|
|
|
/// <exception cref="System.ArgumentNullException">name</exception>
|
|
|
|
|
|
|
|
public void AddPublisher(string name)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
throw new ArgumentNullException("name");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Publishers == null)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Publishers = new List<string>();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!Publishers.Contains(name, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
Publishers.Add(name);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Adds a tagline to the item
|
|
|
|
/// Adds a tagline to the item
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
@ -1019,7 +1066,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
if (string.IsNullOrWhiteSpace(name))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException();
|
|
|
|
throw new ArgumentNullException("name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (Taglines == null)
|
|
|
|
if (Taglines == null)
|
|
|
@ -1042,7 +1089,7 @@ namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(url))
|
|
|
|
if (string.IsNullOrWhiteSpace(url))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException();
|
|
|
|
throw new ArgumentNullException("url");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (TrailerUrls == null)
|
|
|
|
if (TrailerUrls == null)
|
|
|
|