添加了数据库相关了类,和枚举类型相关的类,并且将枚举类型绑定到前段

This commit is contained in:
2025-06-20 18:53:29 +08:00
parent 5dfce624c4
commit 908dc60439
29 changed files with 437 additions and 151 deletions

14
Models/VariableTable.cs Normal file
View File

@@ -0,0 +1,14 @@
using PMSWPF.Enums;
namespace PMSWPF.Models;
public class VariableTable
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public ProtocolType ProtocolType { get; set; }
public List<DataVariable> DataVariables { get; set; }
}