Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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;
-
-
- }
- }
|