feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

23 lines
498 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeoCoordinatePortable
{
public struct GeoCoordinate
{
public double Latitude { get; }
public double Longitude { get; }
public GeoCoordinate(double latitude, double longitude)
{
Latitude = latitude;
Longitude = longitude;
}
public bool IsNull => Latitude == 0 && Longitude == 0;
}
}