using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.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; }
}
}