and I have a presentation on the new system I've been working on for over a month at 9
Not related, I'm pretty sure I shouldn't have had those buffalo wings after the concert last night.
New Topic/Question
This topic is locked
Posted 08 September 2014 - 04:23 AM
Posted 08 September 2014 - 06:28 AM
Posted 08 September 2014 - 07:55 AM
Posted 08 September 2014 - 09:19 AM
Posted 08 September 2014 - 10:28 AM
Posted 08 September 2014 - 01:08 PM
public class Colors
{
[JsonProperty("Values")]
//string causes error with tumbler, Value causes error with towel
public object[] Values { get; set; }
//[JsonProperty("Values")]
//public string[] Values { get; set; }
//[JsonProperty("Values")]
//public Value[] Values { get; set; }
}
public class Value
{
[JsonProperty("Name")]
public string Name { get; set; }
[JsonProperty("ImageUrl")]
public string ImageUrl { get; set; }
[JsonProperty("Charges")]
public Charge[] Charges { get; set; }
[JsonProperty("$index")]
public int Index { get; set; }
}
Posted 09 September 2014 - 06:41 AM
Posted 09 September 2014 - 06:51 AM
