sharee.bike-App/TINKLib/Model/IPosition.cs

14 lines
209 B
C#
Raw Normal View History

2022-01-22 18:16:10 +01:00
using System;
namespace TINK.Model
{
public interface IPosition : IEquatable<IPosition>
{
double Latitude { get; }
double Longitude { get; }
bool IsValid { get; }
}
}