using System; namespace ShareeBike.Model { /// /// Holds a exact position. /// public interface IPosition : IEquatable { double Latitude { get; } double Longitude { get; } bool IsValid { get; } } }