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

10 lines
215 B
C#
Raw Normal View History

2021-05-13 20:16:41 +02: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-05-13 20:16:41 +02:00
}