2022-02-18 18:49:56 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
2022-02-18 20:38:45 +00:00
|
|
|
using EFB.Models.Route;
|
2022-02-18 18:49:56 +00:00
|
|
|
|
|
|
|
namespace EFB.Models
|
|
|
|
{
|
|
|
|
public class FlightsimModel
|
|
|
|
{
|
|
|
|
public SimPositionModel CurrentPosition { get; set; }
|
2022-02-18 20:38:45 +00:00
|
|
|
public IWaypoint Closest { get; set; }
|
|
|
|
public FlightsimModel(SimPositionModel position, IWaypoint closest)
|
2022-02-18 18:49:56 +00:00
|
|
|
{
|
|
|
|
CurrentPosition = position;
|
2022-02-18 20:38:45 +00:00
|
|
|
Closest = closest;
|
2022-02-18 18:49:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|