sharee.bike-App/SharedBusinessLogic/Services/Geolocation/IGeolocation.cs
2024-04-09 12:53:23 +02:00

16 lines
220 B
C#

using System;
namespace ShareeBike.Services.Geolocation
{
public interface IGeolocation
{
double Latitude { get; }
double Longitude { get; }
double? Accuracy { get; }
DateTimeOffset Timestamp { get; }
}
}