1234567891011121314151617181920212223242526272829 |
- /* ==============================================================================
- * 功能描述:Const
- * 创 建 者:Garrett
- * 创建日期:2019/1/29 11:49:28
- * ==============================================================================*/
- namespace Update
- {
- /// <summary>
- /// Const
- /// </summary>
- public class Const
- {
- public static string URL => $"http://service.sagacloud.cn:28888/";
- public static string Key => "MBI_Package";
- //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";
- }
- }
|