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

17 lines
377 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>
/// Title dto.
/// </summary>
public class TitleDto
{
/// <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
}
}