sharee.bike-App/TINKLib/Services/Geolocation/IGeolocation.cs
2023-04-05 15:02:10 +02:00

16 lines
214 B
C#

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