19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
namespace CANFDApiProxy.Messages
|
|
{
|
|
public class UsbTreeMessage
|
|
{
|
|
public Child[] children { get; set; }
|
|
public string name { get; set; }
|
|
public string path { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
|
|
public class Child
|
|
{
|
|
public Child[] children { get; set; }
|
|
public string name { get; set; }
|
|
public string path { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
}
|