diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-03 17:53:33 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-03 17:53:33 -0400 |
| commit | 568d769cc80644e27c15d5b842eb8bc7393016b5 (patch) | |
| tree | 68d9736ec05239deffcdcbbe5d147b0d96137957 /MediaBrowser.Model/Search | |
| parent | 54965ffc54cb6fc8f5176ea792e37f9e43ef131e (diff) | |
support omdb episodes by imdb; add more search data
Diffstat (limited to 'MediaBrowser.Model/Search')
| -rw-r--r-- | MediaBrowser.Model/Search/SearchHint.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Search/SearchHint.cs b/MediaBrowser.Model/Search/SearchHint.cs index cea15a2a78..3ca0eafe63 100644 --- a/MediaBrowser.Model/Search/SearchHint.cs +++ b/MediaBrowser.Model/Search/SearchHint.cs @@ -1,4 +1,6 @@ -namespace MediaBrowser.Model.Search +using System; + +namespace MediaBrowser.Model.Search { /// <summary> /// Class SearchHintResult @@ -94,13 +96,18 @@ /// </summary> /// <value>The display type of the media.</value> public string DisplayMediaType { get; set; } - + + public DateTime? StartDate { get; set; } + public DateTime? EndDate { get; set; } + /// <summary> /// Gets or sets the series. /// </summary> /// <value>The series.</value> public string Series { get; set; } + public string Status { get; set; } + /// <summary> /// Gets or sets the album. /// </summary> |
