2021-08-28 22:32:50 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Description 1_000 dto.
|
|
|
|
/// </summary>
|
|
|
|
public class Description1000Dto
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the description language.
|
|
|
|
/// </summary>
|
|
|
|
[JsonPropertyName("descriptionLanguage")]
|
2021-09-03 16:59:40 +00:00
|
|
|
public string? DescriptionLanguage { get; set; }
|
2021-08-28 22:32:50 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the description.
|
|
|
|
/// </summary>
|
|
|
|
[JsonPropertyName("description")]
|
2021-09-03 16:59:40 +00:00
|
|
|
public string? Description { get; set; }
|
2021-08-28 22:32:50 +00:00
|
|
|
}
|
|
|
|
}
|