FunCtrlResponse.cs 299 B

12345678910111213141516
  1. using PlcSiemens.O;
  2. namespace PlcSiemens.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. }