From 38f79e302fa832ac37ebdaaa09908389d9a48df0 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Mon, 14 Oct 2019 01:02:25 +0100 Subject: [PATCH] Add packet for get device type. --- Enums/DeviceType.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Enums/DeviceType.cs b/Enums/DeviceType.cs index 49efef201..368d32f4b 100644 --- a/Enums/DeviceType.cs +++ b/Enums/DeviceType.cs @@ -40,12 +40,12 @@ namespace DiscImageChef.CommonTypes.Enums { public enum DeviceType { - Unknown, - ATA, - ATAPI, - SCSI, - SecureDigital, - MMC, - NVMe + Unknown = -1, + ATA = 1, + ATAPI = 2, + SCSI = 3, + SecureDigital = 4, + MMC = 5, + NVMe = 6 } } \ No newline at end of file