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

10 lines
215 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00
using TINK.Model.Device;
[assembly: Xamarin.Forms.Dependency(typeof(TINK.iOS.Device.Gps))]
namespace TINK.iOS.Device
{
2022-09-06 16:08:19 +02:00
public class Gps : IGeolodationDependent
{
public bool IsGeolcationEnabled => true;
}
2021-11-07 19:42:59 +01:00
}