DD.WellWorkover.Cloud/AsbCloudApp/Data/IMapPoint.cs
2021-07-21 15:29:19 +05:00

9 lines
156 B
C#

namespace AsbCloudApp.Data
{
public interface IMapPoint
{
double? Latitude { get; set; }
double? Longitude { get; set; }
}
}