init
This commit is contained in:
18
DataPRO/CanFDApiProxy/Messages/UsbTreeMessage.cs
Normal file
18
DataPRO/CanFDApiProxy/Messages/UsbTreeMessage.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user