aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/LiveTv/ProgramInfoDto.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/ProgramInfoDto.cs18
1 files changed, 6 insertions, 12 deletions
diff --git a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
index 6884d355d1..5f35de086d 100644
--- a/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
+++ b/MediaBrowser.Model/LiveTv/ProgramInfoDto.cs
@@ -52,9 +52,9 @@ namespace MediaBrowser.Model.LiveTv
public string Name { get; set; }
/// <summary>
- /// Description of the progam.
+ /// Overview of the recording.
/// </summary>
- public string Description { get; set; }
+ public string Overview { get; set; }
/// <summary>
/// The start date of the program, in UTC.
@@ -72,16 +72,16 @@ namespace MediaBrowser.Model.LiveTv
public List<string> Genres { get; set; }
/// <summary>
- /// Gets or sets the quality.
+ /// Gets or sets a value indicating whether this instance is hd.
/// </summary>
- /// <value>The quality.</value>
- public ProgramVideoQuality Quality { get; set; }
+ /// <value><c>true</c> if this instance is hd; otherwise, <c>false</c>.</value>
+ public bool? IsHD { get; set; }
/// <summary>
/// Gets or sets the audio.
/// </summary>
/// <value>The audio.</value>
- public ProgramAudio Audio { get; set; }
+ public ProgramAudio? Audio { get; set; }
/// <summary>
/// Gets or sets the original air date.
@@ -107,12 +107,6 @@ namespace MediaBrowser.Model.LiveTv
}
}
- public enum ProgramVideoQuality
- {
- StandardDefinition,
- HighDefinition
- }
-
public enum ProgramAudio
{
Stereo