mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
15 lines
214 B
C#
15 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; }
|
|
}
|
|
}
|