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.
 
 

26 lines
783 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 Condition:ObservableObject
  10. {
  11. public bool ConditionMet { get { return _mConditionMet; } set { _mConditionMet = value; OnPropertyChanged(); } }
  12. private bool _mConditionMet;
  13. public string propertyIllustrate { get { return _mpropertyIllustrate; } set { _mpropertyIllustrate = value; OnPropertyChanged(); } }
  14. private string _mpropertyIllustrate;
  15. public string ToolTip { get { return _mToolTip; } set { _mToolTip = value; OnPropertyChanged(); } }
  16. private string _mToolTip;
  17. public bool IsNot { get; set; }
  18. }
  19. }