using HslCommunication.Profinet.Siemens;
using S7.Net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWareSda
{
public class HslCommunicationParam:BasePlcParam
{
///
/// 西门子PLC的CPU
///
public SiemensPLCS cpu { get; set; }
///
/// 西门子PLC的机架
///
public short rack { get; set; }
///
/// 西门子PLC的插槽
///
public short slot { get; set; }
}
}