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.
 
 

29 wiersze
850 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. namespace HBLConsole.Model
  8. {
  9. public class HardwareStatusData : ObservableObject
  10. {
  11. public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
  12. private string _mName;
  13. public string Describe { get { return _mDescribe; } set { _mDescribe = value; OnPropertyChanged(); } }
  14. private string _mDescribe;
  15. public string Address { get { return _mAddress; } set { _mAddress = value; OnPropertyChanged(); } }
  16. private string _mAddress;
  17. public string CurrentValue { get { return _mCurrentValue; } set { _mCurrentValue = value; OnPropertyChanged(); } }
  18. private string _mCurrentValue;
  19. }
  20. }