26 lines
807 B
C#
26 lines
807 B
C#
using AgroBase.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static AgroBase.Models.Enuns;
|
|
|
|
namespace AgroBase.Models
|
|
{
|
|
public class GPSModel
|
|
{
|
|
public DateTime Momento { get; set; }
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
public DateTime DataHora { get; set; }
|
|
public double Altitude { get; set; }
|
|
public double Velocidade { get; set; }
|
|
public int NumeroSatelites { get; set; }
|
|
public double PrecisaoHorizontal { get; set; }
|
|
public double Orientacao { get; set; }
|
|
public int idxRua { get; set; } = -1;
|
|
public DirecaoCarroRua DirecaoTrecho { get; set; } = DirecaoCarroRua.Parado;
|
|
}
|
|
}
|