using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkMW.Model { public class VariblesAttribute : Attribute { public string VarName { get; set; } public string Notes { get; set; } public string RobotAddress { get; set; } public string ModbusTcpAddress { get; set; } /// /// /// /// 变量名 /// 描述 /// 机器人地址 /// modbustcp地址 public VariblesAttribute(string name, string notes, string plcaddress, string modbustcpaddress) { VarName = name; Notes = notes; RobotAddress = plcaddress; ModbusTcpAddress = modbustcpaddress; } } }