2
0

MetadataDto.cs 748 B

123456789101112131415161718192021222324252627282930
  1. #nullable disable
  2. using System.Text.Json.Serialization;
  3. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  4. {
  5. /// <summary>
  6. /// Metadata dto.
  7. /// </summary>
  8. public class MetadataDto
  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 modified timestamp.
  17. /// </summary>
  18. [JsonPropertyName("modified")]
  19. public string Modified { get; set; }
  20. /// <summary>
  21. /// Gets or sets the transport.
  22. /// </summary>
  23. [JsonPropertyName("transport")]
  24. public string Transport { get; set; }
  25. }
  26. }