You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
648 B
24 lines
648 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Dto.Classe
|
|
{
|
|
public class PointDTO
|
|
{
|
|
public double Latitude { get; set; }
|
|
public double Longitude { get; set; }
|
|
public float Timer { get; set; }
|
|
public float Distance { get; set; }
|
|
public float NGear { get; set; }
|
|
public float PBrakeF { get; set; }
|
|
public float ASteer { get; set; }
|
|
public float RPedal { get; set; }
|
|
public float GLong { get; set; }
|
|
public float GLat { get; set; }
|
|
public float VCar { get; set; }
|
|
}
|
|
}
|