IBuildResponse.cs 151 B

123456789
  1. using Core.Communication.Transport;
  2. namespace PLC.Siemens.O
  3. {
  4. public interface IBuildResponse
  5. {
  6. void Build(ByteBuffer buffer);
  7. }
  8. }