TsType.cs 205 B

1234567891011
  1. namespace PLC.Siemens.Protocol.Common
  2. {
  3. public enum TsType
  4. {
  5. TsResBit = 0x03,
  6. TsResByte = 0x04,
  7. TsResInt = 0x05,
  8. TsResReal = 0x07,
  9. TsResOctet = 0x09,
  10. }
  11. }