16 lines
432 B
Plaintext
16 lines
432 B
Plaintext
// Root myDeserializedClass = JsonConvert.DeserializeObject<Root>(myJsonResponse);
|
|
public class Root {
|
|
[JsonProperty("test")]
|
|
public string Test { get; set; }
|
|
|
|
[JsonProperty("test-test")]
|
|
public string TestTest { get; set; }
|
|
|
|
[JsonProperty("continue")]
|
|
public string Continue { get; set; }
|
|
|
|
[JsonProperty("class")]
|
|
public string Class { get; set; }
|
|
}
|
|
|