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