using System.Windows.Forms;
namespace MainForm.ClassFile.ProjectClass
{
///
/// 工站
///
public class Station
{
///
/// 工站名称
///
public string StationName { get; set; }
///
/// 工站No
///
public string StationNO { get; set; }
///
/// 触发点位
///
public string TriggerAddress { get; set; }
///
/// 数据点位
///
public string DataAddress { get; set; }
///
/// 工站代号
///
public string StationCode { get; set; }
///
/// 连接状态
///
public bool IsActive { get; set; }
}
public class LabelTextBox
{
public Label LabelObj { get; set; }
public TextBox TextBoxObj { get; set; }
}
}