添加项目文件。
This commit is contained in:
28
EleBox.App/Com/BitStateSgl.cs
Normal file
28
EleBox.App/Com/BitStateSgl.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DynStatDisk.App.Com
|
||||
{
|
||||
public class BitStateSgl
|
||||
{
|
||||
public BitStateSgl(string sglName, bool state)
|
||||
{
|
||||
SglName = sglName;
|
||||
State = state;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 信号名称
|
||||
/// </summary>
|
||||
public string SglName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 信号状态
|
||||
/// </summary>
|
||||
public bool State { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user