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 PipeLineStatus:NotifyBase
- {
- private int _direction;
-
- public int Direction
- {
- get { return _direction; }
- set { _direction = value;OnPropertyChanged(); }
- }
- private bool _fill;
-
- public bool Fill
- {
- get { return _fill; }
- set { _fill = value;OnPropertyChanged(); }
- }
-
- }
-
- public class PipeLineMode : NotifyBase
- {
- private PipeLineStatus _pipeH_1=new PipeLineStatus();
-
- public PipeLineStatus PipeH_1
- {
- get { return _pipeH_1; }
- set { _pipeH_1 = value; OnPropertyChanged(); }
- }
- private PipeLineStatus _pipeH_2=new PipeLineStatus();
-
- public PipeLineStatus PipeH_2
- {
- get { return _pipeH_2; }
- set { _pipeH_2 = value; OnPropertyChanged(); }
- }
- private PipeLineStatus _pipeH_3 = new PipeLineStatus();
-
- public PipeLineStatus PipeH_3
- {
- get { return _pipeH_3; }
- set { _pipeH_3 = value; OnPropertyChanged(); }
- }
-
- private PipeLineStatus _pipeH_4 = new PipeLineStatus();
-
- public PipeLineStatus PipeH_4
- {
- get { return _pipeH_4; }
- set { _pipeH_4 = value; OnPropertyChanged(); }
- }
- }
- }
|