From f9389c760e3110e9c42720c466cdb2c5f6ca5670 Mon Sep 17 00:00:00 2001 From: Francois Oligny-Lemieux Date: Tue, 14 Apr 2015 10:45:31 +0100 Subject: [PATCH] * add missing colors to fix exception when deserializing --- TrelloNet/Cards/Color.cs | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/TrelloNet/Cards/Color.cs b/TrelloNet/Cards/Color.cs index c6a312c..8a73fc5 100644 --- a/TrelloNet/Cards/Color.cs +++ b/TrelloNet/Cards/Color.cs @@ -1,12 +1,17 @@ -namespace TrelloNet -{ - public enum Color - { - Green, - Yellow, - Orange, - Red, - Purple, - Blue - } -} \ No newline at end of file +namespace TrelloNet +{ + public enum Color + { + Green, + Yellow, + Orange, + Red, + Purple, + Blue, + Sky, + Lime, + Pink, + Black + } +} +