CarTrackingRuleEngine/RuleEngine/Constants/DeviceConfig.cs

11 lines
359 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
namespace RuleEngine.Constants
{
public static class DeviceConfig
{
public const double SPOOFING_THRESH_DISTANCE = 10;
public const double STOP_SPEED_LIMIT = 15;
public const double SECONDS_SET_CAR_STOP = 900; // 15 phút
2025-05-15 15:53:21 +07:00
public const int MAX_DISTANCE = 50;
public const double MAX_DISTANCE_STOP = 0.01;
2025-05-15 10:01:56 +07:00
}
}