35 lines
740 B
C#
35 lines
740 B
C#
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; }
|
|
}
|
|
}
|