mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
14 lines
209 B
C#
14 lines
209 B
C#
|
using System;
|
|||
|
|
|||
|
namespace TINK.Model
|
|||
|
{
|
|||
|
public interface IPosition : IEquatable<IPosition>
|
|||
|
{
|
|||
|
double Latitude { get; }
|
|||
|
|
|||
|
double Longitude { get; }
|
|||
|
|
|||
|
bool IsValid { get; }
|
|||
|
}
|
|||
|
}
|