using System;
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 IReadOnlyList Description100 { get; set; } = Array.Empty();
///
/// Gets or sets the list of description1000.
///
[JsonPropertyName("description1000")]
public IReadOnlyList Description1000 { get; set; } = Array.Empty();
}
}