aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-20 12:29:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-20 12:29:50 -0400
commit6a5d6b5d4c7fdaf775f72e219928bf41fbb335dc (patch)
treead5e28746aee29773b96930caa1eba2d0d339d06 /MediaBrowser.Model/Entities/ImageDownloadOptions.cs
parent333935f3f6f76c4b85d99800a946bb3d2e890343 (diff)
forgot to mark file copy if newer
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageDownloadOptions.cs')
-rw-r--r--MediaBrowser.Model/Entities/ImageDownloadOptions.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
index c69c759ac..92e989a34 100644
--- a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
+++ b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
@@ -1,42 +1,65 @@

namespace MediaBrowser.Model.Entities
{
+ /// <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;
+ }
}
}