6 lines
209 B
Plaintext

// Root myDeserializedClass = JsonConvert.DeserializeObject<List<Root>>(myJsonResponse);
public class Root
{
public string ID { get; set; }
public string Description { get; set; }
}