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