TourIAm/TIAMWebApp/Shared/Models/TripInfo.cs

26 lines
708 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}