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