using System; using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { public class RecordingInfo { /// /// 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; } /// /// Status of the recording. /// public string Status { get; set; } //TODO: Enum for status?? Difference NextPvr,Argus,... /// /// Quality of the Recording. /// public string Quality { get; set; } // TODO: Enum for quality?? Difference NextPvr,Argus,... /// /// Recurring recording? /// public bool Recurring { get; set; } /// /// Parent recurring. /// public string RecurringParent { get; set; } /// /// Start date for the recurring, in UTC. /// public DateTime RecurrringStartDate { get; set; } /// /// End date for the recurring, in UTC /// public DateTime RecurringEndDate { get; set; } /// /// When do we need the recording? /// public List DayMask { get; set; } } }