using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Description 1_000 dto. /// public class Description1000Dto { /// /// Gets or sets the description language. /// [JsonPropertyName("descriptionLanguage")] public string? DescriptionLanguage { get; set; } /// /// Gets or sets the description. /// [JsonPropertyName("description")] public string? Description { get; set; } } }