using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Toolkit.Mvvm.ComponentModel; using Microsoft.Toolkit.Mvvm.Input; using System.Collections.ObjectModel; namespace HBLConsole.Model { /// /// 流程数据信息 /// public class ProcessConditions : ObservableObject { /// /// 流程标题 /// public string ProcessTitl { get { return _mProcessTitl; } set { _mProcessTitl = value; OnPropertyChanged(); } } private string _mProcessTitl; public ObservableCollection Conditions { get; set; } = new ObservableCollection(); } public class Condition : ObservableObject { public bool ConditionMet { get { return _mConditionMet; } set { _mConditionMet = value; OnPropertyChanged(); } } private bool _mConditionMet; public string ConditionName { get { return _mConditionName; } set { _mConditionName = value; OnPropertyChanged(); } } private string _mConditionName; } }