mirror of
https://github.com/farcasclaudiu/BlazorDeviceInterop.git
synced 2026-06-22 09:01:04 +03:00
Add project files.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user