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.
 
 

29 lines
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. }