2021-11-07 20:19:24 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace EFB.Models.Route
|
|
|
|
{
|
|
|
|
public interface IWaypoint
|
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Longitude { get; set; }
|
|
|
|
public string Latitude { get; set; }
|
|
|
|
|
|
|
|
public string Airway { get; set; }
|
|
|
|
public IWaypoint Next { get; set; }
|
|
|
|
public IWaypoint Previous { get; set; }
|
|
|
|
public bool Visited { get; set; }
|
2022-01-09 15:36:52 +00:00
|
|
|
|
2021-11-07 20:19:24 +00:00
|
|
|
}
|
|
|
|
}
|