diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-04 15:55:42 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-04 15:55:42 -0500 |
| commit | 81e59040d004cf75c254481fb023495347906330 (patch) | |
| tree | 6cd5859355caf71b04605dd822206c5207a7d4c9 /MediaBrowser.Controller/LiveTv/ProgramInfo.cs | |
| parent | cb882a4b48e9cf03cd363c54d93338ad62153e7e (diff) | |
updated live tv models
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ProgramInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ProgramInfo.cs | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs index cf5cdb94c9..8059c1100b 100644 --- a/MediaBrowser.Controller/LiveTv/ProgramInfo.cs +++ b/MediaBrowser.Controller/LiveTv/ProgramInfo.cs @@ -27,11 +27,12 @@ namespace MediaBrowser.Controller.LiveTv /// </summary> /// <value>The official rating.</value> public string OfficialRating { get; set; } - + /// <summary> - /// Description of the progam. + /// Gets or sets the overview. /// </summary> - public string Description { get; set; } + /// <value>The overview.</value> + public string Overview { get; set; } /// <summary> /// The start date of the program, in UTC. @@ -55,22 +56,22 @@ namespace MediaBrowser.Controller.LiveTv public List<string> Genres { get; set; } /// <summary> - /// Gets or sets the quality. - /// </summary> - /// <value>The quality.</value> - public ProgramVideoQuality Quality { get; set; } - - /// <summary> /// Gets or sets the original air date. /// </summary> /// <value>The original air date.</value> public DateTime? OriginalAirDate { get; set; } /// <summary> + /// Gets or sets a value indicating whether this instance is hd. + /// </summary> + /// <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 community rating. |
