Added Json2CSharpCodeGenerator.Tests
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
// 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; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user