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

14 lines
332 B
C#
Raw Normal View History

2022-04-10 17:38:34 +02:00
using TINK.Model.Device;
using Xamarin.Essentials;
namespace TINK.Services.Geolocation
{
public class GeolocationAccuracyHighService : GeolocationService
{
public GeolocationAccuracyHighService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.High)
{
}
}
}