diff options
Diffstat (limited to 'MediaBrowser.Api/Images/ImageRequest.cs')
| -rw-r--r-- | MediaBrowser.Api/Images/ImageRequest.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Images/ImageRequest.cs b/MediaBrowser.Api/Images/ImageRequest.cs index 1c11f527d..3ea86e01c 100644 --- a/MediaBrowser.Api/Images/ImageRequest.cs +++ b/MediaBrowser.Api/Images/ImageRequest.cs @@ -45,6 +45,9 @@ namespace MediaBrowser.Api.Images /// <value>The tag.</value> [ApiMember(Name = "Tag", Description = "Optional. Supply the cache tag from the item object to receive strong caching headers.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")] public string Tag { get; set; } + + [ApiMember(Name = "CropWhitespace", Description = "Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")] + public bool? CropWhitespace { get; set; } } /// <summary> |
