using MediaBrowser.Model.LiveTv;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.LiveTv
{
public class SeriesTimerInfo
{
///
/// Id of the recording.
///
public string Id { get; set; }
///
/// ChannelId of the recording.
///
public string ChannelId { get; set; }
///
/// ChannelName of the recording.
///
public string ChannelName { 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 a value indicating whether [record any time].
///
/// true if [record any time]; otherwise, false.
public bool RecordAnyTime { get; set; }
///
/// Gets or sets a value indicating whether [record any channel].
///
/// true if [record any channel]; otherwise, false.
public bool RecordAnyChannel { get; set; }
///
/// Gets or sets a value indicating whether [record new only].
///
/// true if [record new only]; otherwise, false.
public bool RecordNewOnly { get; set; }
///
/// Gets or sets the days.
///
/// The days.
public List Days { get; set; }
///
/// Gets or sets the priority.
///
/// The priority.
public int Priority { 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; }
public SeriesTimerInfo()
{
Days = new List();
}
}
}