From 6a9ed5f87f2d9ec0e07d860d36666f0fea2e1e45 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 25 Nov 2013 21:53:48 -0500 Subject: added recording status enum --- MediaBrowser.Controller/LiveTv/ProgramInfo.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'MediaBrowser.Controller/LiveTv/ProgramInfo.cs') diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs index 8314b9170..2231b4eaa 100644 --- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs +++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using MediaBrowser.Model.LiveTv; namespace MediaBrowser.Controller.LiveTv { @@ -21,6 +22,12 @@ namespace MediaBrowser.Controller.LiveTv /// public string Name { get; set; } + /// + /// Gets or sets the official rating. + /// + /// The official rating. + public string OfficialRating { get; set; } + /// /// Description of the progam. /// @@ -41,6 +48,24 @@ namespace MediaBrowser.Controller.LiveTv /// public List Genres { get; set; } + /// + /// Gets or sets the quality. + /// + /// The quality. + public ProgramVideoQuality Quality { get; set; } + + /// + /// Gets or sets the original air date. + /// + /// The original air date. + public DateTime? OriginalAirDate { get; set; } + + /// + /// Gets or sets the audio. + /// + /// The audio. + public ProgramAudio Audio { get; set; } + public ProgramInfo() { Genres = new List(); -- cgit v1.2.3