1 //
2 // Copyright (c) 2010-2019 Antmicro
3 //
4 // This file is licensed under the MIT License.
5 // Full license text is available in 'licenses/MIT.txt'.
6 //
7 
8 using Antmicro.Renode.Utilities.Packets;
9 
10 namespace Antmicro.Renode.Extensions.Utilities.USBIP
11 {
12     public struct DeviceListCount
13     {
14         [PacketField]
15         public uint NumberOfExportedDevices;
16 
ToStringAntmicro.Renode.Extensions.Utilities.USBIP.DeviceListCount17         public override string ToString()
18         {
19             return $"NumberOfExportedDevices = {NumberOfExportedDevices}";
20         }
21     }
22 }
23