using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Title dto.
///
public class TitleDto
{
///
/// Gets or sets the title.
///
[JsonPropertyName("title120")]
public string? Title120 { get; set; }
}
}