IBuildRequest.cs 165 B

12345678910
  1. using Core.Communication.Transport;
  2. namespace PLC.Siemens.O
  3. {
  4. public interface IBuildRequest
  5. {
  6. void Build();
  7. ByteBuffer GetBuffer();
  8. }
  9. }