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