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

10 lines
205 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; }
SimpleTimezoneDto Timezone { get; set; }
}
}