添加项目文件。
This commit is contained in:
34
EleBox.App/Com/IntStateSgl.cs
Normal file
34
EleBox.App/Com/IntStateSgl.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user