EventDetailsDto.cs 393 B

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