sharee.bike-App/SharedBusinessLogic/Services/Geolocation/GeolocationAccuracyHighService.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 GeolocationAccuracyHighService : GeolocationService
{
public GeolocationAccuracyHighService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.High)
{
}
}
}