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

14 lines
308 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.Model.Device;
2022-04-10 17:38:34 +02:00
using Xamarin.Essentials;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Services.Geolocation
2022-04-10 17:38:34 +02:00
{
2022-09-06 16:08:19 +02:00
public class GeolocationAccuracyHighService : GeolocationService
{
public GeolocationAccuracyHighService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.High)
{
}
}
2022-04-10 17:38:34 +02:00
}