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

14 lines
182 B
C#
Raw Normal View History

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