12345678910111213141516171819202122232425262728293031323334 |
- /* ==============================================================================
- * 功能描述:Const
- * 创 建 者:Garrett
- * 创建日期:2019/1/29 11:49:28
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WPFTestUpdate
- {
- /// <summary>
- /// Const
- /// </summary>
- class Const
- {
- public static string URL = Update.Const.URL;
- public static readonly string Key = Update.Const.Key;
- //revit文件服务器id和密码
- public static readonly string RevitServiceId = "revit";
- public static readonly string RevitServiceSecret = "63afbef6906c342b";
- public static readonly string OSSKeyPath = @"files/revit/";
- //Oss相关
- public static string AccessKeyId = "LTAIQVvCRivyl3Dd";
- public static string AccessKeySecret = "hkGLC7RgWUntbAS2Zw5rWOVS8Xhj0G";
- public static string Endpoint = "oss-cn-beijing.aliyuncs.com";
- public static string BucketName = "saga-data";
- }
- }
|