using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Metadata dto.
///
public class MetadataDto
{
///
/// Gets or sets the linup.
///
[JsonPropertyName("lineup")]
public string? Lineup { get; set; }
///
/// Gets or sets the modified timestamp.
///
[JsonPropertyName("modified")]
public string? Modified { get; set; }
///
/// Gets or sets the transport.
///
[JsonPropertyName("transport")]
public string? Transport { get; set; }
}
}