API.Models.LatLong.LatLong C# (CSharp) Method

LatLong() public method

public LatLong ( double lat, double lon )
lat double
lon double
        public LatLong(double lat, double lon)
            : this()
        {
            Lat = lat;
            Lon = lon;
        }
LatLong