using System; namespace MediaBrowser.Model.LiveTv { public class RecordingInfo { public string ChannelId { get; set; } public string ChannelName { get; set; } public string Id { get; set; } public string Name { get; set; } 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; } } }