Variables.cs 684 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.IO;
  3. //using yxq.Models.Http;
  4. namespace ReleaseHelper.Variables
  5. {
  6. public static class Variables
  7. {
  8. /// <summary>
  9. /// 日志路径
  10. /// </summary>
  11. public static readonly string AppLogPath = Path.Combine(Const.APP_PATH, Const.LOG_DIR);
  12. /// <summary>
  13. /// 请求头
  14. /// </summary>
  15. public static Dictionary<string, object> RequestHeaders = new Dictionary<string, object>
  16. {
  17. {"AppName", Const.APP_NAME },
  18. {"AppVersion", Const.APP_VERSION },
  19. {"Platform", Const.PLATFORM },
  20. {"Authorization", "" },
  21. };
  22. }
  23. }