using System.Diagnostics; namespace MediaBrowser.Model.Dto { /// /// Class StudioDto /// [DebuggerDisplay("Name = {Name}")] public class StudioDto { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } /// /// Gets or sets the primary image tag. /// /// The primary image tag. public string PrimaryImageTag { get; set; } } }