You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
654 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aborlen.Opc.PlcBase
{
public class DeviceStruct
{
public string DeviceIp { get; set; }
public string DeviceType { get; set; }
public string ComFilePath { get; set; }
public string ComClassName { get; set; }
public bool IsOnline { get; set; }
public IDevice Device { get; set; }
/// <summary>
/// 测试连接位
/// </summary>
public string CheckByteTagAddress { get; set; }
public OpcTag TestTag { get; set; }
}
}