forked from ddrilling/AsbCloudServer
10 lines
157 B
C#
10 lines
157 B
C#
namespace AsbCloudDb.Model
|
|
{
|
|
public interface IMapPoint
|
|
{
|
|
double? Latitude { get; set; }
|
|
|
|
double? Longitude { get; set; }
|
|
}
|
|
}
|