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