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; } } }