2014-07-01 21:13:32 +00:00
|
|
|
|
using System.ComponentModel;
|
2014-01-12 09:31:24 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-05-04 18:18:40 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class StudioDto
|
|
|
|
|
/// </summary>
|
2014-01-12 09:31:24 +00:00
|
|
|
|
[DebuggerDisplay("Name = {Name}")]
|
2013-05-04 18:18:40 +00:00
|
|
|
|
public class StudioDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2014-07-01 21:13:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The identifier.</value>
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
2013-05-04 18:18:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the primary image tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image tag.</value>
|
2014-05-08 20:09:53 +00:00
|
|
|
|
public string PrimaryImageTag { get; set; }
|
2013-05-04 18:18:40 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance has primary image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has primary image; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool HasPrimaryImage
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-05-08 20:09:53 +00:00
|
|
|
|
return PrimaryImageTag != null;
|
2013-05-04 18:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [property changed].
|
|
|
|
|
/// </summary>
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
}
|