2017-05-18 14:05:47 -07:00
|
|
|
|
using System.Diagnostics;
|
2013-05-04 11:18:40 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class StudioDto
|
|
|
|
|
/// </summary>
|
2014-01-12 02:31:24 -07:00
|
|
|
|
[DebuggerDisplay("Name = {Name}")]
|
2013-05-04 11:18:40 -07:00
|
|
|
|
public class StudioDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2014-07-01 14:13:32 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The identifier.</value>
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
2013-05-04 11:18:40 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the primary image tag.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The primary image tag.</value>
|
2014-05-08 13:09:53 -07:00
|
|
|
|
public string PrimaryImageTag { get; set; }
|
2013-05-04 11:18:40 -07:00
|
|
|
|
}
|
|
|
|
|
}
|