From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Model/Dto/ImageOptions.cs | 110 --------------------------------- 1 file changed, 110 deletions(-) delete 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 deleted file mode 100644 index 98bd0279a..000000000 --- a/MediaBrowser.Model/Dto/ImageOptions.cs +++ /dev/null @@ -1,110 +0,0 @@ -using MediaBrowser.Model.Drawing; -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 string 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; } - - /// - /// Gets or sets the format. - /// - /// The format. - public ImageFormat? Format { get; set; } - - /// - /// Gets or sets a value indicating whether [add played indicator]. - /// - /// true if [add played indicator]; otherwise, false. - public bool AddPlayedIndicator { get; set; } - - /// - /// Gets or sets the percent played. - /// - /// The percent played. - public int? PercentPlayed { get; set; } - - /// - /// Gets or sets the un played count. - /// - /// The un played count. - public int? UnPlayedCount { get; set; } - - /// - /// Gets or sets the color of the background. - /// - /// The color of the background. - public string BackgroundColor { get; set; } - - /// - /// Initializes a new instance of the class. - /// - public ImageOptions() - { - EnableImageEnhancers = true; - } - } -} -- cgit v1.2.3