19 lines
476 B
C#
19 lines
476 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|