added new image params

This commit is contained in:
Luke Pulverenti
2013-06-05 08:35:18 -04:00
parent 2852e037d2
commit ad1a9a4932
10 changed files with 51 additions and 13 deletions

View File

@@ -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;
}
}
}