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 HBLConsole.Model
- {
- public class HardwareStatusData : ObservableObject
- {
- public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
- private string _mName;
-
- public string Describe { get { return _mDescribe; } set { _mDescribe = value; OnPropertyChanged(); } }
- private string _mDescribe;
-
-
- public string Address { get { return _mAddress; } set { _mAddress = value; OnPropertyChanged(); } }
- private string _mAddress;
-
-
- public string CurrentValue { get { return _mCurrentValue; } set { _mCurrentValue = value; OnPropertyChanged(); } }
- private string _mCurrentValue;
-
-
- }
- }
|