20230811-1

This commit is contained in:
2023-08-11 21:19:41 +03:00
parent 42530c234d
commit 4c697863fa
19 changed files with 75 additions and 45 deletions

View File

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