jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/RecommendationDto.cs

23 lines
569 B
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Recommendation dto.
/// </summary>
public class RecommendationDto
{
/// <summary>
/// Gets or sets the program id.
/// </summary>
[JsonPropertyName("programID")]
2021-09-03 18:59:40 +02:00
public string? ProgramId { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the title.
/// </summary>
[JsonPropertyName("title120")]
2021-09-03 18:59:40 +02:00
public string? Title120 { get; set; }
2021-08-29 00:32:50 +02:00
}
}