using Core.Communication.Transport; namespace PLC.Siemens.Protocol.DateTime { public class FunCtrlResponse { public byte Fun; public byte Para; public void Build(ByteBuffer buffer) { Fun= buffer.PopByte(); Para = buffer.PopByte(); } } }