Const.cs 1.0 KB

1234567891011121314151617181920212223242526272829
  1. /* ==============================================================================
  2. * 功能描述:Const
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/1/29 11:49:28
  5. * ==============================================================================*/
  6. namespace Update
  7. {
  8. /// <summary>
  9. /// Const
  10. /// </summary>
  11. public class Const
  12. {
  13. public static string URL => $"http://service.sagacloud.cn:28888/";
  14. public static string Key => "MBI_Package";
  15. //revit文件服务器id和密码
  16. public static readonly string RevitServiceId = "revit";
  17. public static readonly string RevitServiceSecret = "63afbef6906c342b";
  18. public static readonly string OSSKeyPath = @"files/revit/";
  19. //Oss相关
  20. public static string AccessKeyId = "LTAIQVvCRivyl3Dd";
  21. public static string AccessKeySecret = "hkGLC7RgWUntbAS2Zw5rWOVS8Xhj0G";
  22. public static string Endpoint = "oss-cn-beijing.aliyuncs.com";
  23. public static string BucketName = "saga-data";
  24. }
  25. }