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