- 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!;
-
-
-
-
- public string parameter { get; set; } = default!;
-
-
-
-
- public decimal Longitude { get; set; }
-
-
-
-
- public decimal Latitude { get; set; }
-
-
-
-
- public double Altitude { get; set; }
- }
- }
|