创建了PLC相关的文件

This commit is contained in:
2025-05-29 21:46:53 +08:00
parent 88ef76bd4d
commit 1294adfbfd
12 changed files with 219 additions and 7 deletions

18
Enums/Brand.cs Normal file
View File

@@ -0,0 +1,18 @@
namespace PMSWPF.Enums
{
/// <summary>
/// PLC品牌
/// </summary>
public enum PlcBrand
{
/// <summary>
/// 西门子
/// </summary>
Siemens = 0,
/// <summary>
/// 三菱
/// </summary>
Melsec = 1,
}
}