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

16 lines
220 B
C#
Raw Normal View History

2023-04-05 15:02:10 +02:00
using System;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.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
}