using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Azylee.Core.AppUtils.AppConfigUtils.AppConfigInterfaces { /// /// AppConfig 配置管理器 指定模型接口 /// public interface IAppConfigModel { /// /// 强制设置配置值 /// void ForceSet(); } }