|
1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Common
- {
- public class Consts
- {
-
-
-
- public const string DEFAULT_HTTPCLIENT_NAME = "GPS_DEFAULT_HTTP";
-
-
-
-
- public static DateTime EraUtcTime = DateTime.Parse("1970/01/01");
-
-
-
-
- public static int RadiusThreshold = 150;
- }
- }
|