From 8329710cf5527f24ba99ef03816edcf079a20a29 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 9 Jun 2013 23:16:15 -0400 Subject: rename case --- MediaBrowser.Model/Dto/ImageOptions.cs | 72 ++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 MediaBrowser.Model/Dto/ImageOptions.cs (limited to 'MediaBrowser.Model/Dto/ImageOptions.cs') diff --git a/MediaBrowser.Model/Dto/ImageOptions.cs b/MediaBrowser.Model/Dto/ImageOptions.cs new file mode 100644 index 0000000000..5a306ec497 --- /dev/null +++ b/MediaBrowser.Model/Dto/ImageOptions.cs @@ -0,0 +1,72 @@ +using System; +using MediaBrowser.Model.Entities; + +namespace MediaBrowser.Model.Dto +{ + /// + /// Class ImageOptions + /// + public class ImageOptions + { + /// + /// Gets or sets the type of the image. + /// + /// The type of the image. + public ImageType ImageType { get; set; } + + /// + /// Gets or sets the index of the image. + /// + /// The index of the image. + public int? ImageIndex { get; set; } + + /// + /// Gets or sets the width. + /// + /// The width. + public int? Width { get; set; } + + /// + /// Gets or sets the height. + /// + /// The height. + public int? Height { get; set; } + + /// + /// Gets or sets the width of the max. + /// + /// The width of the max. + public int? MaxWidth { get; set; } + + /// + /// Gets or sets the height of the max. + /// + /// The height of the max. + public int? MaxHeight { get; set; } + + /// + /// Gets or sets the quality. + /// + /// The quality. + public int? Quality { get; set; } + + /// + /// Gets or sets the image tag. + /// If set this will result in strong, unconditional response caching + /// + /// The hash. + public Guid? Tag { get; set; } + + /// + /// Gets or sets a value indicating whether [crop whitespace]. + /// + /// null if [crop whitespace] contains no value, true if [crop whitespace]; otherwise, false. + public bool? CropWhitespace { get; set; } + + /// + /// Gets or sets a value indicating whether [enable image enhancers]. + /// + /// true if [enable image enhancers]; otherwise, false. + public bool EnableImageEnhancers { get; set; } + } +} -- cgit v1.2.3