using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Leit.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; }
|
|
|
|
}
|
|
}
|