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