Route Object Generation Complete
This commit is contained in:
@ -17,10 +17,9 @@ namespace EFB.Models.Route
|
||||
public IWaypoint Previous { get; set; } = null;
|
||||
public bool Visited { get; set; } = false;
|
||||
|
||||
public NavaidModel(string name, string airway, int frequency){
|
||||
public NavaidModel(string name, string airway){
|
||||
Name = name;
|
||||
Airway = Airway;
|
||||
Frequency = frequency;
|
||||
Airway = airway;
|
||||
}
|
||||
}
|
||||
}
|
@ -18,7 +18,7 @@ namespace EFB.Models.Route
|
||||
|
||||
public WaypointModel(string name, string airway){
|
||||
Name = name;
|
||||
Airway = Airway;
|
||||
Airway = airway;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user