aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/DTO/ImageOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-05 08:35:18 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-05 08:35:18 -0400
commitad1a9a4932b1a073bafd930417901ce6a83f35a5 (patch)
tree023c5ef1b37adadd2d20085ac7b4f17e8b1049ae /MediaBrowser.Model/DTO/ImageOptions.cs
parent2852e037d2116d4ad20c61cc16559493dc494b31 (diff)
added new image params
Diffstat (limited to 'MediaBrowser.Model/DTO/ImageOptions.cs')
-rw-r--r--MediaBrowser.Model/DTO/ImageOptions.cs13
1 files changed, 12 insertions, 1 deletions
diff --git a/MediaBrowser.Model/DTO/ImageOptions.cs b/MediaBrowser.Model/DTO/ImageOptions.cs
index 68ca91ed0..45c4695ef 100644
--- a/MediaBrowser.Model/DTO/ImageOptions.cs
+++ b/MediaBrowser.Model/DTO/ImageOptions.cs
@@ -20,7 +20,7 @@ namespace MediaBrowser.Model.Dto
/// </summary>
/// <value>The index of the image.</value>
public int? ImageIndex { get; set; }
-
+
/// <summary>
/// Gets or sets the width.
/// </summary>
@@ -63,5 +63,16 @@ namespace MediaBrowser.Model.Dto
/// </summary>
/// <value><c>null</c> if [crop whitespace] contains no value, <c>true</c> if [crop whitespace]; otherwise, <c>false</c>.</value>
public bool? CropWhitespace { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether [enable image enhancers].
+ /// </summary>
+ /// <value><c>true</c> if [enable image enhancers]; otherwise, <c>false</c>.</value>
+ public bool EnableImageEnhancers { get; set; }
+
+ public ImageOptions()
+ {
+ EnableImageEnhancers = true;
+ }
}
}