LineupDto.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. /// The lineup dto.
  7. /// </summary>
  8. public class LineupDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the linup.
  12. /// </summary>
  13. [JsonPropertyName("lineup")]
  14. public string Lineup { get; set; }
  15. /// <summary>
  16. /// Gets or sets the lineup name.
  17. /// </summary>
  18. [JsonPropertyName("name")]
  19. public string Name { get; set; }
  20. /// <summary>
  21. /// Gets or sets the transport.
  22. /// </summary>
  23. [JsonPropertyName("transport")]
  24. public string Transport { get; set; }
  25. /// <summary>
  26. /// Gets or sets the location.
  27. /// </summary>
  28. [JsonPropertyName("location")]
  29. public string Location { get; set; }
  30. /// <summary>
  31. /// Gets or sets the uri.
  32. /// </summary>
  33. [JsonPropertyName("uri")]
  34. public string Uri { get; set; }
  35. }
  36. }