| 123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using System.IO;
- //using yxq.Models.Http;
- namespace ReleaseHelper.Variables
- {
- public static class Variables
- {
- /// <summary>
- /// 日志路径
- /// </summary>
- public static readonly string AppLogPath = Path.Combine(Const.APP_PATH, Const.LOG_DIR);
- /// <summary>
- /// 请求头
- /// </summary>
- public static Dictionary<string, object> RequestHeaders = new Dictionary<string, object>
- {
- {"AppName", Const.APP_NAME },
- {"AppVersion", Const.APP_VERSION },
- {"Platform", Const.PLATFORM },
- {"Authorization", "" },
- };
- }
- }
|