VitalProductDataPageName.cs 267 B

123456789101112
  1. namespace SCSI
  2. {
  3. public enum VitalProductDataPageName : byte
  4. {
  5. SupportedVPDPages = 0x00,
  6. UnitSerialNumber = 0x80,
  7. DeviceIdentification = 0x83,
  8. BlockLimits = 0xB0,
  9. BlockDeviceCharacteristics = 0xB1,
  10. }
  11. }