jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/Description100Dto.cs

23 lines
612 B
C#
Raw Normal View History

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