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.
37 lines
1.1 KiB
37 lines
1.1 KiB
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public class TimerInfoDto : BaseTimerInfoDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the status.
|
|
/// </summary>
|
|
/// <value>The status.</value>
|
|
public RecordingStatus Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the series timer identifier.
|
|
/// </summary>
|
|
/// <value>The series timer identifier.</value>
|
|
public string SeriesTimerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the external series timer identifier.
|
|
/// </summary>
|
|
/// <value>The external series timer identifier.</value>
|
|
public string ExternalSeriesTimerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the run time ticks.
|
|
/// </summary>
|
|
/// <value>The run time ticks.</value>
|
|
public long? RunTimeTicks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the program information.
|
|
/// </summary>
|
|
/// <value>The program information.</value>
|
|
public ProgramInfoDto ProgramInfo { get; set; }
|
|
|
|
}
|
|
}
|