TourIAm/TIAMWebApp/Shared/Models/TripInfo.cs

20 lines
591 B
C#

namespace TIAMWebApp.Shared.Application.Models
{
public class TripInfo
{
public float StartLatitude { get; set; }
public float StartLongitude { get; set; }
public float EndLatitude { get; set; }
public float EndLongitude { get; set; }
public TripInfo(float startLatitude, float startLongitude, float endLatitude, float endLongitude )
{
StartLatitude = startLatitude;
StartLongitude = startLongitude;
EndLatitude = endLatitude;
EndLongitude = endLongitude;
}
}
}