2017-05-18 21:05:47 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-05-04 18:18:40 +00:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|