Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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; }
-
- }
- }
|