Copy device information to DeviceInfo structure.

This commit is contained in:
2018-09-02 00:25:35 +01:00
parent 6f971bca5f
commit f7bfec1041
2 changed files with 47 additions and 0 deletions

View File

@@ -62,5 +62,28 @@ namespace DiscImageChef.Core.Devices.Info
public byte[] ExtendedCSD { get; }
public byte[] SCR { get; }
public byte[] OCR { get; }
public DeviceType Type { get; }
public string Manufacturer { get; }
public string Model { get; }
public string Revision { get; }
public string Serial { get; }
public PeripheralDeviceTypes ScsiType { get; }
public bool IsRemovable { get; }
public bool IsUsb { get; }
public ushort UsbVendorId { get; }
public ushort UsbProductId { get; }
public byte[] UsbDescriptors { get; }
public string UsbManufacturerString { get; }
public string UsbProductString { get; }
public string UsbSerialString { get; }
public bool IsFireWire { get; }
public ulong FireWireGuid { get; }
public uint FireWireModel { get; }
public string FireWireModelName { get; }
public uint FireWireVendor { get; }
public string FireWireVendorName { get; }
public bool IsCompactFlash { get; }
public bool IsPcmcia { get; }
public byte[] Cis { get; }
}
}