2021-08-28 22:32:50 +00: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 16:59:40 +00:00
|
|
|
public string? Lineup { get; set; }
|
2021-08-28 22:32:50 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the modified timestamp.
|
|
|
|
/// </summary>
|
|
|
|
[JsonPropertyName("modified")]
|
2021-09-03 16:59:40 +00:00
|
|
|
public string? Modified { get; set; }
|
2021-08-28 22:32:50 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the transport.
|
|
|
|
/// </summary>
|
|
|
|
[JsonPropertyName("transport")]
|
2021-09-03 16:59:40 +00:00
|
|
|
public string? Transport { get; set; }
|
2021-08-28 22:32:50 +00:00
|
|
|
}
|
|
|
|
}
|