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

14 lines
296 B
C#
Raw Normal View History

2022-04-10 17:38:34 +02:00
using TINK.Model.Device;
using Xamarin.Essentials;
2022-08-30 15:42:25 +02:00
2022-04-10 17:38:34 +02:00
namespace TINK.Services.Geolocation
{
2022-09-06 16:08:19 +02:00
public class GeolocationAccuracyBestService : GeolocationService
{
public GeolocationAccuracyBestService(IGeolodationDependent dependent) : base(
dependent, GeolocationAccuracy.Best)
{
}
}
2022-04-10 17:38:34 +02:00
}