FlightPlanEditor.cs 823 B

123456789101112131415161718192021222324252627282930
  1. using Newtonsoft.Json;
  2. namespace Model;
  3. public class FlightPlanEditor
  4. {
  5. [JsonProperty("飞机参数")]
  6. public AircraftParameter aircraftparameter;
  7. public CityWeather cityweather;
  8. [JsonProperty("基地参数")]
  9. public Base originbase;
  10. [JsonProperty("巡护航线参数")]
  11. public AirRoute[] airroute = new AirRoute[1];
  12. [JsonProperty("任务点")]
  13. public MissionPoint missionpoint = new MissionPoint();
  14. [JsonProperty("火点")]
  15. public FirePoint[] firepoint = new FirePoint[1];
  16. [JsonProperty("爬升段")]
  17. public ClimbSegment climbsegment = new ClimbSegment();
  18. [JsonProperty("下降段")]
  19. public DescentSegment descentsegment = new DescentSegment();
  20. [JsonProperty("巡航段")]
  21. public CruiseSegment cruisesegment = new CruiseSegment();
  22. }