#nullable disable
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Descriptions program dto.
///
public class DescriptionsProgramDto
{
///
/// Gets or sets the list of description 100.
///
[JsonPropertyName("description100")]
public List Description100 { get; set; }
///
/// Gets or sets the list of description1000.
///
[JsonPropertyName("description1000")]
public List Description1000 { get; set; }
}
}