TitleDto.cs 377 B

12345678910111213141516
  1. using System.Text.Json.Serialization;
  2. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  3. {
  4. /// <summary>
  5. /// Title dto.
  6. /// </summary>
  7. public class TitleDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the title.
  11. /// </summary>
  12. [JsonPropertyName("title120")]
  13. public string? Title120 { get; set; }
  14. }
  15. }