forked from ddrilling/AsbCloudServer
9 lines
156 B
C#
9 lines
156 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public interface IMapPoint
|
|
{
|
|
double? Latitude { get; set; }
|
|
double? Longitude { get; set; }
|
|
}
|
|
}
|