diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-18 15:57:28 -0400 |
| commit | 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 (patch) | |
| tree | b792b6c932a6f77cec1535267e1096251bc8ab95 /MediaBrowser.Model/Entities/ImageDownloadOptions.cs | |
| parent | 48d60b2f6ad2cf88bd5336025446b005d24fe4ee (diff) | |
removed unused attributes
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageDownloadOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ImageDownloadOptions.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs index b5c3ee392..c69c759ac 100644 --- a/MediaBrowser.Model/Entities/ImageDownloadOptions.cs +++ b/MediaBrowser.Model/Entities/ImageDownloadOptions.cs @@ -1,50 +1,41 @@ -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; } } |
