aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/ImageDownloadOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-02 08:36:31 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-02 08:36:31 -0500
commit9e0c1340fc3ad4b41e3c349b98ea71b708ade95a (patch)
tree1462595d01278d769cc12a9228dcc0d068455bbe /MediaBrowser.Model/Configuration/ImageDownloadOptions.cs
parent53776b332c727c8e5e21a99ab2c633a266df336b (diff)
convert games to new providers
Diffstat (limited to 'MediaBrowser.Model/Configuration/ImageDownloadOptions.cs')
-rw-r--r--MediaBrowser.Model/Configuration/ImageDownloadOptions.cs81
1 files changed, 0 insertions, 81 deletions
diff --git a/MediaBrowser.Model/Configuration/ImageDownloadOptions.cs b/MediaBrowser.Model/Configuration/ImageDownloadOptions.cs
deleted file mode 100644
index 603112110..000000000
--- a/MediaBrowser.Model/Configuration/ImageDownloadOptions.cs
+++ /dev/null
@@ -1,81 +0,0 @@
-
-namespace MediaBrowser.Model.Configuration
-{
- /// <summary>
- /// Class ImageDownloadOptions
- /// </summary>
- public class ImageDownloadOptions
- {
- /// <summary>
- /// Download Art Image
- /// </summary>
- /// <value><c>true</c> if art; otherwise, <c>false</c>.</value>
- public bool Art { get; set; }
-
- /// <summary>
- /// Download Logo Image
- /// </summary>
- /// <value><c>true</c> if logo; otherwise, <c>false</c>.</value>
- public bool Logo { get; set; }
-
- /// <summary>
- /// Download Primary Image
- /// </summary>
- /// <value><c>true</c> if primary; otherwise, <c>false</c>.</value>
- public bool Primary { get; set; }
-
- /// <summary>
- /// Download Backdrop Images
- /// </summary>
- /// <value><c>true</c> if backdrops; otherwise, <c>false</c>.</value>
- public bool Backdrops { get; set; }
-
- /// <summary>
- /// Download Disc Image
- /// </summary>
- /// <value><c>true</c> if disc; otherwise, <c>false</c>.</value>
- public bool Disc { get; set; }
-
- /// <summary>
- /// Download Thumb Image
- /// </summary>
- /// <value><c>true</c> if thumb; otherwise, <c>false</c>.</value>
- public bool Thumb { get; set; }
-
- /// <summary>
- /// Download Banner Image
- /// </summary>
- /// <value><c>true</c> if banner; otherwise, <c>false</c>.</value>
- public bool Banner { get; set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="ImageDownloadOptions"/> class.
- /// </summary>
- public ImageDownloadOptions()
- {
- Art = true;
- Logo = true;
- Primary = true;
- Backdrops = true;
- Disc = true;
- Thumb = true;
- Banner = true;
- }
- }
-
- /// <summary>
- /// Class MetadataOptions.
- /// </summary>
- public class MetadataOptions
- {
- public int MaxBackdrops { get; set; }
-
- public int MinBackdropWidth { get; set; }
-
- public MetadataOptions()
- {
- MaxBackdrops = 3;
- MinBackdropWidth = 1280;
- }
- }
-}