jellyfin-server/MediaBrowser.Model/Dto/StudioDto.cs

29 lines
736 B
C#
Raw Normal View History

2017-05-18 21:05:47 +00:00
using System.Diagnostics;
namespace MediaBrowser.Model.Dto
{
/// <summary>
/// Class StudioDto
/// </summary>
[DebuggerDisplay("Name = {Name}")]
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; }
/// <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; }
}
}