sharee.bike-App/TINKLib/Services/Geolocation/IGeolocation.cs

16 lines
214 B
C#
Raw Normal View History

2023-04-05 15:02:10 +02:00
using System;
2022-04-10 17:38:34 +02:00
namespace TINK.Services.Geolocation
2021-05-13 20:03:07 +02:00
{
2023-04-05 15:02:10 +02:00
public interface IGeolocation
2022-09-06 16:08:19 +02:00
{
2021-05-13 20:03:07 +02:00
2023-04-05 15:02:10 +02:00
double Latitude { get; }
double Longitude { get; }
double? Accuracy { get; }
DateTimeOffset Timestamp { get; }
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
}