IJsonConfigModel.cs 363 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.Jsons.JsonConfigUtils
  6. {
  7. /// <summary>
  8. /// Json 配置管理器 指定模型接口
  9. /// </summary>
  10. public interface IJsonConfigModel
  11. {
  12. /// <summary>
  13. /// 重置配置项
  14. /// </summary>
  15. void Reset();
  16. }
  17. }