mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
14 lines
177 B
C#
14 lines
177 B
C#
using System;
|
|
|
|
namespace DiscImageChef.Devices
|
|
{
|
|
public class Enums
|
|
{
|
|
public enum ScsiCommands : byte
|
|
{
|
|
Inquiry = 0x12
|
|
}
|
|
}
|
|
}
|
|
|