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