選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

31 行
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. }