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.Model/LiveTv/ProgramInfoDto.cs | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'MediaBrowser.Model/LiveTv/ProgramInfoDto.cs') diff --git a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs index 15387d5204..8b0976671d 100644 --- a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs +++ b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs @@ -27,6 +27,12 @@ namespace MediaBrowser.Model.LiveTv /// /// The recording identifier. public string RecordingId { get; set; } + + /// + /// Gets or sets the official rating. + /// + /// The official rating. + public string OfficialRating { get; set; } /// /// Gets or sets the name of the service. @@ -59,9 +65,38 @@ namespace MediaBrowser.Model.LiveTv /// public List Genres { get; set; } + /// + /// Gets or sets the quality. + /// + /// The quality. + public ProgramVideoQuality Quality { get; set; } + + /// + /// Gets or sets the audio. + /// + /// The audio. + public ProgramAudio Audio { get; set; } + + /// + /// Gets or sets the original air date. + /// + /// The original air date. + public DateTime? OriginalAirDate { get; set; } + public ProgramInfoDto() { Genres = new List(); } } + + public enum ProgramVideoQuality + { + StandardDefinition, + HighDefinition + } + + public enum ProgramAudio + { + Stereo + } } \ No newline at end of file -- cgit v1.2.3