CarTrackingRuleEngine/RuleEngine/DTOs/DeviceDTO.cs

15 lines
349 B
C#

namespace RuleEngine.DTOs
{
public class DeviceInstantInfo
{
public TimeSpan? Timestamp { get; set; }
public double? Latitude { get; set; }
public double? Longtitude { get; set; }
}
public class ShortDeviceInfor
{
public int CarID { get; set; }
public int UnitID { get; set; }
}
}