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

14 lines
336 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 GeolocationAccuracyBestService : GeolocationService
{
public GeolocationAccuracyBestService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.Best)
{
}
}
}