45 lines
1.7 KiB
C#
45 lines
1.7 KiB
C#
using SafeMobileLib;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Resources;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SafeMobileLib
|
|
{
|
|
public class StaticMembers
|
|
{
|
|
public static Boolean IsSMSLocationNotFleet = false;
|
|
public static Hashtable IdReportHS = new Hashtable();
|
|
public static Int32 AddrCnt = 0;
|
|
public static Int32 Delta1 = 70;//70
|
|
public static Int32 Delta2 = 100;//100
|
|
public static volatile ArrayList FleetPosList = new ArrayList();
|
|
public static Boolean isInMile = false;
|
|
public static Boolean is24hours = true;
|
|
public static Boolean DayFirst = false;
|
|
public static String NameReport;
|
|
public static Boolean IsHistroyNotStop = false;
|
|
public static List<ONOFFData> ONOFFList;
|
|
public static List<SpeedData> SpeedingList;
|
|
public static List<LandData> LandList;
|
|
public static List<StopData> HistDataReport;
|
|
public static List<User> UsersList;
|
|
public static List<SMS_Location> SMSLocList;
|
|
public static Boolean IsIdle = false;
|
|
public static Boolean StartStop = false;
|
|
public static Int32 IDLETime = 5;
|
|
public static Hashtable vehicleHT = new Hashtable();
|
|
public static Hashtable ZoneIDHash = new Hashtable();
|
|
public static Boolean LATLNGforDinamicReports = false;
|
|
public static volatile Queue AddrGISQueue = new Queue();
|
|
public static ArrayList PositionList;
|
|
public static MapTYPE MapType;
|
|
public static rep_type ReportType;
|
|
public static bool ShowCoordinates;
|
|
}
|
|
}
|