Files
DP44/DataPRO/CanFDApiProxy/.svn/pristine/77/773907018d8793e45e901072cbdf776ddccf3512.svn-base

19 lines
476 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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; }
}
}