FunCtrlResponse.cs 314 B

12345678910111213141516
  1. using Core.Communication.Transport;
  2. namespace PLC.Siemens.Protocol.DateTime
  3. {
  4. public class FunCtrlResponse
  5. {
  6. public byte Fun;
  7. public byte Para;
  8. public void Build(ByteBuffer buffer)
  9. {
  10. Fun= buffer.PopByte();
  11. Para = buffer.PopByte();
  12. }
  13. }
  14. }