You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.6 KiB
92 lines
2.6 KiB
#nullable disable
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
|
|
{
|
|
/// <summary>
|
|
/// Program dto.
|
|
/// </summary>
|
|
public class ProgramDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the program id.
|
|
/// </summary>
|
|
[JsonPropertyName("programID")]
|
|
public string ProgramId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the air date time.
|
|
/// </summary>
|
|
[JsonPropertyName("airDateTime")]
|
|
public string AirDateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the duration.
|
|
/// </summary>
|
|
[JsonPropertyName("duration")]
|
|
public int Duration { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the md5.
|
|
/// </summary>
|
|
[JsonPropertyName("md5")]
|
|
public string Md5 { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of audio properties.
|
|
/// </summary>
|
|
[JsonPropertyName("audioProperties")]
|
|
public List<string> AudioProperties { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of video properties.
|
|
/// </summary>
|
|
[JsonPropertyName("videoProperties")]
|
|
public List<string> VideoProperties { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the list of ratings.
|
|
/// </summary>
|
|
[JsonPropertyName("ratings")]
|
|
public List<RatingDto> Ratings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this program is new.
|
|
/// </summary>
|
|
[JsonPropertyName("new")]
|
|
public bool? New { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the multipart object.
|
|
/// </summary>
|
|
[JsonPropertyName("multipart")]
|
|
public MultipartDto Multipart { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the live tape delay.
|
|
/// </summary>
|
|
[JsonPropertyName("liveTapeDelay")]
|
|
public string LiveTapeDelay { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this is the premiere.
|
|
/// </summary>
|
|
[JsonPropertyName("premiere")]
|
|
public bool Premiere { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this is a repeat.
|
|
/// </summary>
|
|
[JsonPropertyName("repeat")]
|
|
public bool Repeat { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the premiere or finale.
|
|
/// </summary>
|
|
[JsonPropertyName("isPremiereOrFinale")]
|
|
public string IsPremiereOrFinale { get; set; }
|
|
}
|
|
}
|