From 6a5d6b5d4c7fdaf775f72e219928bf41fbb335dc Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 20 Apr 2013 12:29:50 -0400 Subject: forgot to mark file copy if newer --- .../Entities/ImageDownloadOptions.cs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'MediaBrowser.Model/Entities') 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 { + /// + /// Class ImageDownloadOptions + /// public class ImageDownloadOptions { /// /// Download Art Image /// + /// true if art; otherwise, false. public bool Art { get; set; } /// /// Download Logo Image /// + /// true if logo; otherwise, false. public bool Logo { get; set; } /// /// Download Primary Image /// + /// true if primary; otherwise, false. public bool Primary { get; set; } /// /// Download Backdrop Images /// + /// true if backdrops; otherwise, false. public bool Backdrops { get; set; } /// /// Download Disc Image /// + /// true if disc; otherwise, false. public bool Disc { get; set; } /// /// Download Thumb Image /// + /// true if thumb; otherwise, false. public bool Thumb { get; set; } /// /// Download Banner Image /// + /// true if banner; otherwise, false. public bool Banner { get; set; } + /// + /// Initializes a new instance of the class. + /// + public ImageDownloadOptions() + { + Art = true; + Logo = true; + Primary = true; + Backdrops = true; + Disc = true; + Thumb = true; + Banner = true; + } } } -- cgit v1.2.3