sharee.bike-App/SharedBusinessLogic/Services/Geolocation/GeolocationAccuracyBestService.cs
2024-04-09 12:53:23 +02:00

14 lines
308 B
C#

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