#nullable disable
#pragma warning disable CS1591
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.LiveTv
{
public class TimerInfoDto : BaseTimerInfoDto
{
public TimerInfoDto()
{
Type = "Timer";
}
///
/// Gets or sets the status.
///
/// The status.
public RecordingStatus Status { get; set; }
///
/// Gets or sets the series timer identifier.
///
/// The series timer identifier.
public string SeriesTimerId { get; set; }
///
/// Gets or sets the external series timer identifier.
///
/// The external series timer identifier.
public string ExternalSeriesTimerId { get; set; }
///
/// Gets or sets the run time ticks.
///
/// The run time ticks.
public long? RunTimeTicks { get; set; }
///
/// Gets or sets the program information.
///
/// The program information.
public BaseItemDto ProgramInfo { get; set; }
}
}