Move DeviceType to CommonTypes.

This commit is contained in:
2018-11-27 00:09:53 +00:00
parent 8b3dc3d37c
commit da9598885b
2 changed files with 14 additions and 0 deletions

13
Enums/DeviceType.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace DiscImageChef.CommonTypes.Enums
{
public enum DeviceType
{
Unknown,
ATA,
ATAPI,
SCSI,
SecureDigital,
MMC,
NVMe
}
}