#nullable disable using System.Text.Json.Serialization; namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos { /// /// Description 100 dto. /// public class Description100Dto { /// /// 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; } } }