LineupDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// The lineup dto.
  6. /// </summary>
  7. public class LineupDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the linup.
  11. /// </summary>
  12. [JsonPropertyName("lineup")]
  13. public string? Lineup { get; set; }
  14. /// <summary>
  15. /// Gets or sets the lineup name.
  16. /// </summary>
  17. [JsonPropertyName("name")]
  18. public string? Name { get; set; }
  19. /// <summary>
  20. /// Gets or sets the transport.
  21. /// </summary>
  22. [JsonPropertyName("transport")]
  23. public string? Transport { get; set; }
  24. /// <summary>
  25. /// Gets or sets the location.
  26. /// </summary>
  27. [JsonPropertyName("location")]
  28. public string? Location { get; set; }
  29. /// <summary>
  30. /// Gets or sets the uri.
  31. /// </summary>
  32. [JsonPropertyName("uri")]
  33. public string? Uri { get; set; }
  34. /// <summary>
  35. /// Gets or sets a value indicating whether this lineup was deleted.
  36. /// </summary>
  37. [JsonPropertyName("isDeleted")]
  38. public bool? IsDeleted { get; set; }
  39. }
  40. }