sharee.bike-App/TINKLib/Model/IPosition.cs
Oliver Hauff f38b516d25 3.0.271
2022-01-22 18:16:10 +01:00

14 lines
209 B
C#

using System;
namespace TINK.Model
{
public interface IPosition : IEquatable<IPosition>
{
double Latitude { get; }
double Longitude { get; }
bool IsValid { get; }
}
}