19 lines
372 B
C#
19 lines
372 B
C#
|
|
using HslCommunication.Profinet.Siemens;
|
|||
|
|
|
|||
|
|
namespace PlcTool.Siemens.Entity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// PLC 连接信息类
|
|||
|
|
/// </summary>
|
|||
|
|
public class SiemensS7Connection
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// PLC 的编号
|
|||
|
|
/// </summary>
|
|||
|
|
public int? PlcId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 连接信息
|
|||
|
|
/// </summary>
|
|||
|
|
public SiemensS7Net? SiemensS7 { get; set; }
|
|||
|
|
}
|