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

29 lines
732 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>
/// Metadata dto.
/// </summary>
public class MetadataDto
{
/// <summary>
/// Gets or sets the linup.
/// </summary>
[JsonPropertyName("lineup")]
2021-09-03 18:59:40 +02:00
public string? Lineup { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the modified timestamp.
/// </summary>
[JsonPropertyName("modified")]
2021-09-03 18:59:40 +02:00
public string? Modified { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the transport.
/// </summary>
[JsonPropertyName("transport")]
2021-09-03 18:59:40 +02:00
public string? Transport { get; set; }
2021-08-29 00:32:50 +02:00
}
}