添加项目文件。

This commit is contained in:
2025-06-03 17:27:51 +08:00
parent 86e545c80b
commit 37b95aead5
148 changed files with 16891 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DynStatDisk.App.Com
{
public class IntStateSgl
{
public IntStateSgl(string sglName, int state, int standardState)
{
SglName = sglName;
State = state;
StandardState = standardState;
}
/// <summary>
/// 信号名称
/// </summary>
public string SglName { get; set; }
/// <summary>
/// 信号状态 标准
/// </summary>
public int StandardState { get; set; }
/// <summary>
/// 信号状态
/// </summary>
public int State { get; set; }
}
}