using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.MECF.Framework.Common.SCCore { /// /// 配置变更时做记录用于下次程序启动提示 /// public class ConfigChangedInfo { public string Name = ""; public string OldValue = ""; public bool Enable = false; } }