sharee.bike-App/TINKLib/Services/Geolocation/GeolocationAccuracyHighService.cs
2022-04-10 17:38:34 +02:00

14 lines
332 B
C#

using TINK.Model.Device;
using Xamarin.Essentials;
namespace TINK.Services.Geolocation
{
public class GeolocationAccuracyHighService : GeolocationService
{
public GeolocationAccuracyHighService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.High)
{
}
}
}