| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Azylee.Jsons.JsonConfigUtils
- {
- /// <summary>
- /// Json 配置管理器 指定模型接口
- /// </summary>
- public interface IJsonConfigModel
- {
- /// <summary>
- /// 重置配置项
- /// </summary>
- void Reset();
- }
- }
|