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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
-
- namespace HBLConsole.Model
- {
- public class Condition:ObservableObject
- {
- public bool ConditionMet { get { return _mConditionMet; } set { _mConditionMet = value; OnPropertyChanged(); } }
- private bool _mConditionMet;
-
- public string propertyIllustrate { get { return _mpropertyIllustrate; } set { _mpropertyIllustrate = value; OnPropertyChanged(); } }
- private string _mpropertyIllustrate;
-
- public string ToolTip { get { return _mToolTip; } set { _mToolTip = value; OnPropertyChanged(); } }
- private string _mToolTip;
-
-
- public bool IsNot { get; set; }
-
- }
- }
|