- using Core.Communication.Transport;
 
- namespace PLC.Siemens.Protocol.WriteData
 
- {
 
-     public class WriteParamsResponse
 
-     {
 
-         public byte FunRead { get; set; }
 
-         public byte ItemCount { get; set; }
 
-         public void Build(ByteBuffer buffer)
 
-         {
 
-             FunRead = buffer.PopByte();
 
-             ItemCount = buffer.PopByte();
 
-         }
 
-     }
 
- }
 
 
  |