You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
721 B
26 lines
721 B
3 years ago
|
#nullable disable
|
||
|
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Descriptions program dto.
|
||
|
/// </summary>
|
||
|
public class DescriptionsProgramDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the list of description 100.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("description100")]
|
||
|
public List<Description100Dto> Description100 { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the list of description1000.
|
||
|
/// </summary>
|
||
|
[JsonPropertyName("description1000")]
|
||
|
public List<Description1000Dto> Description1000 { get; set; }
|
||
|
}
|
||
|
}
|