IAppConfigItemModel.cs 585 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.Core.AppUtils.AppConfigUtils.AppConfigInterfaces
  6. {
  7. /// <summary>
  8. /// AppConfig 配置管理器 详细配置项接口
  9. /// </summary>
  10. public interface IAppConfigItemModel
  11. {
  12. /// <summary>
  13. /// 配置项序号
  14. /// </summary>
  15. /// <returns></returns>
  16. int GetOrderNumber();
  17. /// <summary>
  18. /// 配置项唯一名称
  19. /// </summary>
  20. /// <returns></returns>
  21. string GetUniqueName();
  22. }
  23. }