diff options
Diffstat (limited to 'MediaBrowser.Model/Search/SearchHint.cs')
| -rw-r--r-- | MediaBrowser.Model/Search/SearchHint.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Search/SearchHint.cs b/MediaBrowser.Model/Search/SearchHint.cs index bebe23734..002200c0f 100644 --- a/MediaBrowser.Model/Search/SearchHint.cs +++ b/MediaBrowser.Model/Search/SearchHint.cs @@ -50,6 +50,30 @@ namespace MediaBrowser.Model.Search public Guid? PrimaryImageTag { get; set; } /// <summary> + /// Gets or sets the thumb image tag. + /// </summary> + /// <value>The thumb image tag.</value> + public Guid? ThumbImageTag { get; set; } + + /// <summary> + /// Gets or sets the thumb image item identifier. + /// </summary> + /// <value>The thumb image item identifier.</value> + public string ThumbImageItemId { get; set; } + + /// <summary> + /// Gets or sets the backdrop image tag. + /// </summary> + /// <value>The backdrop image tag.</value> + public Guid? BackdropImageTag { get; set; } + + /// <summary> + /// Gets or sets the backdrop image item identifier. + /// </summary> + /// <value>The backdrop image item identifier.</value> + public string BackdropImageItemId { get; set; } + + /// <summary> /// Gets or sets the type. /// </summary> /// <value>The type.</value> |
