using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Imm.Daemon.Config { public class OpcConfig { /// /// opc设备编号 /// public string opcDeviceCode { get; set; } /// /// opc设备IP /// public string opcDeviceIp { get; set; } /// /// 是否启用 /// public bool isFlag { get; set; } } }