S7WriteModel.cs 908 B

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