using MediaBrowser.Model.LiveTv;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.LiveTv
{
public class TimerInfo
{
///
/// 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; }
///
/// Name of the recording.
///
public string Name { get; set; }
///
/// Description of the recording.
///
public string Description { 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 a value indicating whether this instance is recurring.
///
/// true if this instance is recurring; otherwise, false.
public bool IsRecurring { get; set; }
///
/// Gets or sets the recurring days.
///
/// The recurring days.
public List RecurringDays { get; set; }
public TimerInfo()
{
RecurringDays = new List();
}
}
}