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

17 lines
245 B
C#
Raw Normal View History

2023-04-05 15:02:10 +02:00
using System;
2022-01-22 18:16:10 +01:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model
2022-01-22 18:16:10 +01:00
{
2023-04-05 15:02:10 +02:00
/// <summary>
/// Holds a exact position.
/// </summary>
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
}