Ramón Tomás bae10b07b8 Created UserLocationModel
Map Position to Locations APi
Update current user location
2017-06-01 20:16:19 +02:00

21 lines
524 B
C#

namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
{
public class FrontierPoints
{
public int Id { get; set; }
public double Latitude { get; private set; }
public double Longitude { get; private set; }
public FrontierPoints()
{
}
public FrontierPoints(double latitude, double longitude)
{
Latitude = latitude;
Longitude = longitude;
}
public Locations Location { get; private set; }
}
}