IBuildRequest.cs 184 B

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