终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

61 rader
1.3 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Academy.Model
  7. {
  8. public class PipeLineStatus:NotifyBase
  9. {
  10. private int _direction;
  11. public int Direction
  12. {
  13. get { return _direction; }
  14. set { _direction = value;OnPropertyChanged(); }
  15. }
  16. private bool _fill;
  17. public bool Fill
  18. {
  19. get { return _fill; }
  20. set { _fill = value;OnPropertyChanged(); }
  21. }
  22. }
  23. public class PipeLineMode : NotifyBase
  24. {
  25. private PipeLineStatus _pipeH_1=new PipeLineStatus();
  26. public PipeLineStatus PipeH_1
  27. {
  28. get { return _pipeH_1; }
  29. set { _pipeH_1 = value; OnPropertyChanged(); }
  30. }
  31. private PipeLineStatus _pipeH_2=new PipeLineStatus();
  32. public PipeLineStatus PipeH_2
  33. {
  34. get { return _pipeH_2; }
  35. set { _pipeH_2 = value; OnPropertyChanged(); }
  36. }
  37. private PipeLineStatus _pipeH_3 = new PipeLineStatus();
  38. public PipeLineStatus PipeH_3
  39. {
  40. get { return _pipeH_3; }
  41. set { _pipeH_3 = value; OnPropertyChanged(); }
  42. }
  43. private PipeLineStatus _pipeH_4 = new PipeLineStatus();
  44. public PipeLineStatus PipeH_4
  45. {
  46. get { return _pipeH_4; }
  47. set { _pipeH_4 = value; OnPropertyChanged(); }
  48. }
  49. }
  50. }