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.
 
 

31 lines
1.0 KiB

  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 ParSet : ObservableObject
  10. {
  11. public ushort Minute { get { return _mMinute; } set { _mMinute = value; OnPropertyChanged(); } }
  12. private ushort _mMinute;
  13. public ushort Second { get { return _mSecond; } set { _mSecond = value; OnPropertyChanged(); } }
  14. private ushort _mSecond;
  15. public bool IsShield { get { return _mIsShield; } set { _mIsShield = value; OnPropertyChanged(); } }
  16. private bool _mIsShield;
  17. public string TextBlockContext { get { return _mTextBlockContext; } set { _mTextBlockContext = value; OnPropertyChanged(); } }
  18. private string _mTextBlockContext;
  19. public string CheckBoxContext { get { return _mCheckBoxContext; } set { _mCheckBoxContext = value; OnPropertyChanged(); } }
  20. private string _mCheckBoxContext;
  21. }
  22. }