29 lines
555 B
C#
29 lines
555 B
C#
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; }
|
|
|
|
}
|
|
}
|