This commit is contained in:
2023-01-15 15:04:00 +03:00
parent 4649373a3d
commit d3171a1164
20 changed files with 1018 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
namespace anbs_cp.Enums;
/// <summary>
/// Тип носителя
/// </summary>
public enum EDriveType
{
/// <summary>
/// HDD/SSD/M2
/// </summary>
DtHardDisc = 0,
/// <summary>
/// Диск CD/DVD/BD
/// </summary>
DtCDRom = 1
}