17 lines
392 B
C#
17 lines
392 B
C#
// APIResponseRoot myDeserializedClass = JsonConvert.DeserializeObject<APIResponseRoot>(myJsonResponse);
|
|
// https://json2csharp.com/
|
|
|
|
namespace Tesla {
|
|
public class CommandResponse
|
|
{
|
|
public bool result { get; set; }
|
|
public string reason { get; set; }
|
|
}
|
|
|
|
public class APIResponseRoot
|
|
{
|
|
public CommandResponse response { get; set; }
|
|
}
|
|
|
|
|
|
} |