From 7710b3695ccace124f4af4c9d5255c40b32cbac1 Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Mon, 4 Mar 2013 11:11:50 -0500 Subject: [PATCH] Oops --- .../Entities/ImageDownloadOptions.cs | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 MediaBrowser.Model/Entities/ImageDownloadOptions.cs diff --git a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs new file mode 100644 index 0000000000..38d4427053 --- /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 + { + /// + /// Download Art Image + /// + [ProtoMember(1)] + public bool Art { get; set; } + + /// + /// Download Logo Image + /// + [ProtoMember(2)] + public bool Logo { get; set; } + + /// + /// Download Primary Image + /// + [ProtoMember(3)] + public bool Primary { get; set; } + + /// + /// Download Backdrop Images + /// + [ProtoMember(4)] + public bool Backdrops { get; set; } + + /// + /// Download Disc Image + /// + [ProtoMember(5)] + public bool Disc { get; set; } + + /// + /// Download Thumb Image + /// + [ProtoMember(6)] + public bool Thumb { get; set; } + + /// + /// Download Banner Image + /// + [ProtoMember(7)] + public bool Banner { get; set; } + + } +}