CarTrackingRuleEngine/RuleEngine/Constants/DeviceConfig.cs

9 lines
261 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
}
}