using System;
namespace MediaBrowser.Model.LiveTv
{
public class TimerInfoDto
{
///
/// Id of the recording.
///
public string Id { get; set; }
///
/// Gets or sets the external identifier.
///
/// The external identifier.
public string ExternalId { get; set; }
///
/// ChannelId of the recording.
///
public string ChannelId { get; set; }
///
/// Gets or sets the external channel identifier.
///
/// The external channel identifier.
public string ExternalChannelId { get; set; }
///
/// ChannelName of the recording.
///
public string ChannelName { get; set; }
///
/// Gets or sets the name of the service.
///
/// The name of the service.
public string ServiceName { get; set; }
///
/// Gets or sets the program identifier.
///
/// The program identifier.
public string ProgramId { get; set; }
///
/// Name of the recording.
///
public string Name { get; set; }
///
/// Description of the recording.
///
public string Overview { get; set; }
///
/// The start date of the recording, in UTC.
///
public DateTime StartDate { get; set; }
///
/// The end date of the recording, in UTC.
///
public DateTime EndDate { get; set; }
///
/// 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 requested pre padding seconds.
///
/// The requested pre padding seconds.
public int RequestedPrePaddingSeconds { get; set; }
///
/// Gets or sets the requested post padding seconds.
///
/// The requested post padding seconds.
public int RequestedPostPaddingSeconds { get; set; }
///
/// Gets or sets the required pre padding seconds.
///
/// The required pre padding seconds.
public int RequiredPrePaddingSeconds { get; set; }
///
/// Gets or sets the required post padding seconds.
///
/// The required post padding seconds.
public int RequiredPostPaddingSeconds { get; set; }
///
/// Gets or sets the duration ms.
///
/// The duration ms.
public int DurationMs { get; set; }
}
}