CrewDto.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Crew dto.
  6. /// </summary>
  7. public class CrewDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the billing order.
  11. /// </summary>
  12. [JsonPropertyName("billingOrder")]
  13. public string? BillingOrder { get; set; }
  14. /// <summary>
  15. /// Gets or sets the role.
  16. /// </summary>
  17. [JsonPropertyName("role")]
  18. public string? Role { get; set; }
  19. /// <summary>
  20. /// Gets or sets the name id.
  21. /// </summary>
  22. [JsonPropertyName("nameId")]
  23. public string? NameId { get; set; }
  24. /// <summary>
  25. /// Gets or sets the person id.
  26. /// </summary>
  27. [JsonPropertyName("personId")]
  28. public string? PersonId { get; set; }
  29. /// <summary>
  30. /// Gets or sets the name.
  31. /// </summary>
  32. [JsonPropertyName("name")]
  33. public string? Name { get; set; }
  34. }
  35. }