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;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
-
- namespace BPASmartClient.DosingHKProject.Model
- {
- public class DeviceCurrentStatus : ObservableObject
- {
-
- public double Weight { get { return _mWeight; } set { _mWeight = value; OnPropertyChanged(); } }
- private double _mWeight;
-
-
- public bool RunStatus { get { return _mRunStatus; } set { _mRunStatus = value; OnPropertyChanged(); } }
- private bool _mRunStatus;
-
-
- public int DeviceNum { get { return _mDeviceNum; } set { _mDeviceNum = value; OnPropertyChanged(); } }
- private int _mDeviceNum;
-
- public string DeviceName { get { return _mDeviceName; } set { _mDeviceName = value; OnPropertyChanged(); } }
- private string _mDeviceName;
-
-
-
- }
- }
|