Updated Models
This commit is contained in:
@ -15,5 +15,6 @@ namespace EFB.Models.Route
|
||||
public IWaypoint Next { get; set; }
|
||||
public IWaypoint Previous { get; set; }
|
||||
public bool Visited { get; set; }
|
||||
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user