ServiceAction.cs 158 B

12345678910
  1. namespace SCSI
  2. {
  3. public enum ServiceAction : byte
  4. {
  5. None = 0x00,
  6. ReadCapacity16 = 0x10,
  7. ReadLong16 = 0x11,
  8. }
  9. }