TitleDto.cs 395 B

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