aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-04 12:52:44 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-04 12:52:44 -0500
commite080c0e0449007893e99ca399c8215f24836ea63 (patch)
tree3a77c804c47e96652c2812c47547bc0686ef3354 /MediaBrowser.Model/Entities/ImageDownloadOptions.cs
parentb22eec3f783341d61212e8f3252297296de20621 (diff)
parente5a78ba5bf8f0e181c9d1991ba37cb9116d32c1d (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageDownloadOptions.cs')
-rw-r--r--MediaBrowser.Model/Entities/ImageDownloadOptions.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
new file mode 100644
index 000000000..38d442705
--- /dev/null
+++ b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs
@@ -0,0 +1,55 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using ProtoBuf;
+
+namespace MediaBrowser.Model.Entities
+{
+ [ProtoContract]
+ public class ImageDownloadOptions
+ {
+ /// <summary>
+ /// Download Art Image
+ /// </summary>
+ [ProtoMember(1)]
+ public bool Art { get; set; }
+
+ /// <summary>
+ /// Download Logo Image
+ /// </summary>
+ [ProtoMember(2)]
+ public bool Logo { get; set; }
+
+ /// <summary>
+ /// Download Primary Image
+ /// </summary>
+ [ProtoMember(3)]
+ public bool Primary { get; set; }
+
+ /// <summary>
+ /// Download Backdrop Images
+ /// </summary>
+ [ProtoMember(4)]
+ public bool Backdrops { get; set; }
+
+ /// <summary>
+ /// Download Disc Image
+ /// </summary>
+ [ProtoMember(5)]
+ public bool Disc { get; set; }
+
+ /// <summary>
+ /// Download Thumb Image
+ /// </summary>
+ [ProtoMember(6)]
+ public bool Thumb { get; set; }
+
+ /// <summary>
+ /// Download Banner Image
+ /// </summary>
+ [ProtoMember(7)]
+ public bool Banner { get; set; }
+
+ }
+}