|
12345678910111213141516171819202122 |
- using System;
-
- namespace HealthMonitor.Common
- {
- public class Consts
- {
-
-
-
- public const string DEFAULT_HTTPCLIENT_NAME = "DEFAULT_HTTP";
-
-
-
-
- public static DateTime EraUtcTime = DateTime.Parse("1970/01/01");
-
-
-
-
- public static int RadiusThreshold = 150;
- }
- }
|