mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
13 lines
192 B
C#
13 lines
192 B
C#
|
|
namespace DiscImageChef.CommonTypes.Enums
|
||
|
|
{
|
||
|
|
public enum DeviceType
|
||
|
|
{
|
||
|
|
Unknown,
|
||
|
|
ATA,
|
||
|
|
ATAPI,
|
||
|
|
SCSI,
|
||
|
|
SecureDigital,
|
||
|
|
MMC,
|
||
|
|
NVMe
|
||
|
|
}
|
||
|
|
}
|