Files
BlazorDeviceInterop/BlazorDeviceInterop.Components/LeafletMap/LatLng.cs
T
Bernard Darnton 9576c5aa5b Add project files.
2020-10-12 06:03:49 +13:00

14 lines
287 B
C#

namespace BlazorDeviceInterop.Components.LeafletMap
{
public class LatLng
{
public double Lat { get; set; }
public double Lng { get; set; }
public LatLng(double lat, double lng)
{
Lat = lat;
Lng = lng;
}
}
}