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

14 lines
336 B
C#

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