Const.cs 1.1 KB

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