DD.WellWorkover.Cloud/AsbCloudApp/Data/IMapPoint.cs

9 lines
156 B
C#
Raw Normal View History

2021-07-21 15:29:19 +05:00
namespace AsbCloudApp.Data
{
public interface IMapPoint
{
2021-07-21 15:22:58 +05:00
double? Latitude { get; set; }
double? Longitude { get; set; }
}
}