Updated Models

This commit is contained in:
2022-01-09 15:36:52 +00:00
parent f2e852fcf0
commit 1e27081f52
5 changed files with 13 additions and 16 deletions

View File

@ -15,5 +15,6 @@ namespace EFB.Models.Route
public IWaypoint Next { get; set; }
public IWaypoint Previous { get; set; }
public bool Visited { get; set; }
}
}

View File

@ -17,5 +17,10 @@ namespace EFB.Models.Route
public IWaypoint Previous { get; set; } = null;
public bool Visited { get; set; } = false;
public NavaidModel(string name, string airway, int frequency){
Name = name;
Airway = Airway;
Frequency = frequency;
}
}
}

View File

@ -16,20 +16,10 @@ namespace EFB.Models.Route
public IWaypoint Previous { get; set; } = null;
public bool Visited { get; set; }
public WaypointModel(string name, string airway){
Name = name;
Airway = Airway;
}
}
}