sharee.bike-App/LastenradBayern/ShareeBike.iOS/Device/Gps.cs

10 lines
233 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
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;
}
}