EFB/Models/Route/IWaypoint.cs

15 lines
382 B
C#
Raw Permalink Normal View History

2021-11-07 20:19:24 +00:00
namespace EFB.Models.Route
{
public interface IWaypoint
{
public string Name { get; set; }
public float Longitude { get; set; }
public float Latitude { get; set; }
2022-02-28 21:53:28 +00:00
2021-11-07 20:19:24 +00:00
public string Airway { get; set; }
public IWaypoint Next { get; set; }
public IWaypoint Previous { get; set; }
public bool Visited { get; set; }
2022-02-28 21:53:28 +00:00
2021-11-07 20:19:24 +00:00
}
}