S7ReadModel.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. using S7.Net;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Printing;
  6. using System.Text;
  7. using Prism.Mvvm;
  8. using System.Threading.Tasks;
  9. namespace S7NetModule.Model
  10. {
  11. public class S7ReadModel:BindableBase
  12. {
  13. private int db;
  14. private int startByteAdr;
  15. private int varCount=0;
  16. private byte bitAdr=0;
  17. private VarType varType= VarType.Byte;
  18. private bool refPass = false;
  19. public S7ReadModel()
  20. {
  21. }
  22. public int Db { get => db; set { SetProperty(ref db, value); } }
  23. public int StartByteAdr { get => startByteAdr; set { SetProperty(ref startByteAdr, value); } }
  24. public int VarCount { get => varCount; set { SetProperty(ref varCount, value); } }
  25. public byte BitAdr { get => bitAdr; set { SetProperty(ref bitAdr, value); } }
  26. public VarType VarType { get => varType; set { SetProperty(ref varType, value); } }
  27. public bool RefPass { get => refPass; set { SetProperty(ref refPass, value); } }
  28. }
  29. }