using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GpsCardGatewayPosition.Model.GatewayEntity
{
public class PushLocationModel
{
public PushLocationModel()
{
command = "LocationDownload";
}
public string command { get; set; } = default!;
///
/// IMEI号
///
public string parameter { get; set; } = default!;
///
/// 经度
///
public decimal Longitude { get; set; }
///
/// 纬度
///
public decimal Latitude { get; set; }
///
/// 海拔
///
public double Altitude { get; set; }
}
}