You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
522B

  1. using System;
  2. namespace HealthMonitor.Common
  3. {
  4. public class Consts
  5. {
  6. /// <summary>
  7. /// HttpClient常用配置分组名称
  8. /// </summary>
  9. public const string DEFAULT_HTTPCLIENT_NAME = "DEFAULT_HTTP";
  10. /// <summary>
  11. /// 纪元时间(UTC时间戳起始计算时间)
  12. /// </summary>
  13. public static DateTime EraUtcTime = DateTime.Parse("1970/01/01");
  14. /// <summary>
  15. /// 有效定位的半径阈值(大于该值则为无效定位)
  16. /// </summary>
  17. public static int RadiusThreshold = 150;
  18. }
  19. }