mirror of
https://github.com/farcasclaudiu/BlazorDeviceInterop.git
synced 2026-06-22 05:01:01 +03:00
14 lines
287 B
C#
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;
|
|
}
|
|
}
|
|
}
|