EventDetailsDto.cs 411 B

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