You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Academy.Model
- {
- public class DeviceCtrl:NotifyBase
- {
-
- public bool M101 { get { return _m101; } set { _m101 = value;OnPropertyChanged(); } }
- private bool _m101 = false;
- private int myVar;
- public int MyProperty
- {
- get { return myVar; }
- set { myVar = value; }
- }
- public bool IsConnect { get { return _isConnect; } set { _isConnect = value; OnPropertyChanged(); } }
- private bool _isConnect = false;
- public bool M102 { get { return _m102; } set { _m102 = value; OnPropertyChanged(); } }
- private bool _m102 = false;
- public bool M103 { get { return _m103; } set { _m103 = value; OnPropertyChanged(); } }
- private bool _m103 = false;
- public bool VX100 { get { return _vx100; } set { _vx100 = value; OnPropertyChanged(); } }
- private bool _vx100 = false;
- public bool VX101 { get { return _vx101; } set { _vx101 = value; OnPropertyChanged(); } }
- private bool _vx101 = false;
- public bool VX102 { get { return _vx102; } set { _vx102 = value; OnPropertyChanged(); } }
- private bool _vx102 = false;
- public bool VX103 { get { return _vx103; } set { _vx103 = value; OnPropertyChanged(); } }
- private bool _vx103 = false;
- public bool VX104 { get { return _vx104; } set { _vx104 = value; OnPropertyChanged(); } }
- private bool _vx104 = false;
- public bool VX105 { get { return _vx100; } set { _vx100 = value; OnPropertyChanged(); } }
- private bool _vx105 = false;
-
- public bool VX106 { get { return _vx106; } set { _vx106 = value; OnPropertyChanged(); } }
- private bool _vx106 = false;
- public bool VX107 { get { return _vx107; } set { _vx107 = value; OnPropertyChanged(); } }
- private bool _vx107 = false;
- public bool VX108 { get { return _vx108; } set { _vx108 = value; OnPropertyChanged(); } }
- private bool _vx108 = false;
- public bool VX109 { get { return _vx109; } set { _vx109 = value; OnPropertyChanged(); } }
- private bool _vx109 = false;
- public bool VX110 { get { return _vx110; } set { _vx110 = value; OnPropertyChanged(); } }
- private bool _vx110 = false;
- public bool VX111 { get { return _vx111; } set { _vx111 = value; OnPropertyChanged(); } }
- private bool _vx111 = false;
- public bool VX112 { get { return _vx112; } set { _vx112 = value; OnPropertyChanged(); } }
- private bool _vx112 = false;
- public bool VX113 { get { return _vx113; } set { _vx113 = value; OnPropertyChanged(); } }
- private bool _vx113 = false;
- public bool VX114 { get { return _vx114; } set { _vx114 = value; OnPropertyChanged(); } }
- private bool _vx114 = false;
- public bool VX115 { get { return _vx115; } set { _vx115 = value; OnPropertyChanged(); } }
- private bool _vx115 = false;
-
- public int TempWok { get { return _tempWok; } set { _tempWok = value; OnPropertyChanged(); } }
- private int _tempWok;
- public int TempMaterial { get { return _tempMaterial; } set { _tempMaterial = value; OnPropertyChanged(); } }
- private int _tempMaterial;
- public float WeightWok { get { return _weightWok; } set { _weightWok = value; OnPropertyChanged(); } }
- private float _weightWok;
- public int TempVent { get { return _tempVent; } set { _tempVent = value; OnPropertyChanged(); } }
- private int _tempVent;
- public float PressureWok { get { return _pressureWok; } set { _pressureWok = value; OnPropertyChanged(); } }
- private float _pressureWok;
- public float PressureWeek { get { return _pressureWeek; } set { _pressureWeek = value; OnPropertyChanged(); } }
- private float _pressureWeek;
- public float OpenValue { get { return _openValue; } set { _openValue = value; OnPropertyChanged(); } }
- private float _openValue;
-
- public bool Compressor { get { return _compressor; } set { _compressor = value; OnPropertyChanged(); } }
- private bool _compressor = false;
-
- public bool ByPassMaterial { get { return _byPassMaterial; } set { _byPassMaterial = value; OnPropertyChanged(); } }
- private bool _byPassMaterial = false;
- public bool ByPassReact { get { return _byPassReact; } set { _byPassReact = value; OnPropertyChanged(); } }
- private bool _byPassReact = false;
- }
- }
|