sharee.bike-App/LastenradBayern/ShareeBike.iOS/Device/Gps.cs
2024-04-09 12:53:23 +02:00

10 lines
233 B
C#

using ShareeBike.Model.Device;
[assembly: Xamarin.Forms.Dependency(typeof(ShareeBike.iOS.Device.Gps))]
namespace ShareeBike.iOS.Device
{
public class Gps : IGeolodationDependent
{
public bool IsGeolcationEnabled => true;
}
}