initial version with inspection edition

This commit is contained in:
2020-04-29 14:08:00 +08:00
commit 6a5629fc3b
186 changed files with 33984 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
using Foresight.Fleet.Services.Asset;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronIntel.Contractor.Machines
{
public class LocationInfo
{
public long AssetID { get; set; }
public string DataSource { get; set; }
public string SubSource { get; set; }
public string DataSourceName { get; set; }
public DateTime AsofTime { get; set; }
public DateTime AsofTimeLocal { get; set; }
public bool IsPrimary { get; set; }
public string SpeedUnits { get; set; }
public double AccelerationMagnitude { get; set; }
public double Duration { get; set; }
public SpeedingBehaviors SpeedingBehavior { get; set; }
public HarshDrivingEvents HarshDringEvent { get; set; }
public string Street { get; set; }
public string SpeedLimitUnits { get; set; }
public double PostedSpeedLimit { get; set; }
public double Speed { get; set; }
public AssetMoveStatus MoveStatus { get; set; }
public string EventType { get; set; }
public int Heading { get; set; }
public double Longitude { get; set; }
public double Latitude { get; set; }
public string ReceivedDateStr
{
get
{
return AsofTimeLocal.ToString();
}
}
}
}