using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Event details dto. /// public class EventDetailsDto { /// /// Gets or sets the sub type. /// [JsonPropertyName("subType")] public string? SubType { get; set; } } }