diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-13 10:48:48 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-13 10:48:48 -0500 |
| commit | 2884920f0f4a298fb1e8a275f017144fc05fd366 (patch) | |
| tree | ad6d619142457f847aef38df275d914f5887766a /MediaBrowser.Controller/LiveTv/RecordingInfo.cs | |
| parent | d00178d8f0002638d47174c0bd73ebcf1ac5f6fd (diff) | |
added HasImage to live tv objects
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/RecordingInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/RecordingInfo.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs index 1ffbb7e237..4fc8c0f7a3 100644 --- a/MediaBrowser.Controller/LiveTv/RecordingInfo.cs +++ b/MediaBrowser.Controller/LiveTv/RecordingInfo.cs @@ -107,6 +107,12 @@ namespace MediaBrowser.Controller.LiveTv /// <value>The community rating.</value> public float? CommunityRating { get; set; } + /// <summary> + /// Set this value to true or false if it is known via recording info whether there is an image or not. + /// Leave it null if the only way to determine is by requesting the image and handling the failure. + /// </summary> + public bool? HasImage { get; set; } + public RecordingInfo() { Genres = new List<string>(); |
