MetadataDto.cs 732 B

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