using System.Text.Json.Serialization; namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos { /// /// Caption dto. /// public class CaptionDto { /// /// Gets or sets the content. /// [JsonPropertyName("content")] public string? Content { get; set; } /// /// Gets or sets the lang. /// [JsonPropertyName("lang")] public string? Lang { get; set; } } }