You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
549 B
C#
27 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Imm.Daemon.Config
|
|
{
|
|
public class OpcConfig
|
|
{
|
|
/// <summary>
|
|
/// opc设备编号
|
|
/// </summary>
|
|
public string opcDeviceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// opc设备IP
|
|
/// </summary>
|
|
public string opcDeviceIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public bool isFlag { get; set; }
|
|
}
|
|
}
|