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; }
|
|
|
|
}
|
|
}
|