sharee.bike-App/TINKLib/Model/IPosition.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

14 lines
182 B
C#

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