using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; using AntdUI; namespace DH.Commons.Base { public class GlobalConfig : NotifyProperty { string _name; private BindingList _InitProcessList = new BindingList(); private BindingList _StartProcessList = new BindingList(); private BindingList _StopProcessList = new BindingList(); private BindingList _StartResetList = new BindingList(); private BindingList _StopResetList = new BindingList(); public string Name { get => _name; set { if (_name != value) { _name = value; OnPropertyChanged(nameof(Name)); } } } public BindingList InitProcessList { get => _InitProcessList; set { if (_InitProcessList == value) return; _InitProcessList = value; OnPropertyChanged(nameof(InitProcessList)); } } public BindingList StartProcessList { get => _StartProcessList; set { if (_StartProcessList == value) return; _StartProcessList = value; OnPropertyChanged(nameof(StartProcessList)); } } public BindingList StopProcessList { get => _StopProcessList; set { if (_StopProcessList == value) return; _StopProcessList = value; OnPropertyChanged(nameof(StopProcessList)); } } public BindingList StartResetList { get => _StartResetList; set { if (_StartResetList == value) return; _StartResetList = value; OnPropertyChanged(nameof(StartResetList)); } } public BindingList StopResetList { get => _StopResetList; set { if (_StopResetList == value) return; _StopResetList = value; OnPropertyChanged(nameof(StopResetList)); } } string _imgSavePath; string _dbSavePath; string _configSavePath; public string ImgSavePath { get => _imgSavePath; set { if (_imgSavePath != value) { _imgSavePath = value; OnPropertyChanged(nameof(ImgSavePath)); } } } public string DbSavePath { get => _dbSavePath; set { if (_dbSavePath != value) { _dbSavePath = value; OnPropertyChanged(nameof(DbSavePath)); } } } public string ConfigSavePath { get => _configSavePath; set { if (_configSavePath != value) { _configSavePath = value; OnPropertyChanged(nameof(ConfigSavePath)); } } } } }