19 lines
466 B
C#
19 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using EFB.Models.Route;
|
|
|
|
namespace EFB.Models
|
|
{
|
|
public class FlightsimModel
|
|
{
|
|
public SimPositionModel CurrentPosition { get; set; }
|
|
public IWaypoint Closest { get; set; }
|
|
public FlightsimModel(SimPositionModel position, IWaypoint closest)
|
|
{
|
|
CurrentPosition = position;
|
|
Closest = closest;
|
|
}
|
|
}
|
|
} |