CrewDto.cs 1.0 KB

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