StudioDto.cs 736 B

1234567891011121314151617181920212223242526272829
  1. using System.Diagnostics;
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. /// <summary>
  5. /// Class StudioDto
  6. /// </summary>
  7. [DebuggerDisplay("Name = {Name}")]
  8. public class StudioDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the name.
  12. /// </summary>
  13. /// <value>The name.</value>
  14. public string Name { get; set; }
  15. /// <summary>
  16. /// Gets or sets the identifier.
  17. /// </summary>
  18. /// <value>The identifier.</value>
  19. public string Id { get; set; }
  20. /// <summary>
  21. /// Gets or sets the primary image tag.
  22. /// </summary>
  23. /// <value>The primary image tag.</value>
  24. public string PrimaryImageTag { get; set; }
  25. }
  26. }