123456789101112131415161718192021222324252627282930 |
- using Newtonsoft.Json;
- namespace Model;
- public class FlightPlanEditor
- {
- [JsonProperty("飞机参数")]
- public AircraftParameter aircraftparameter;
- public CityWeather cityweather;
-
- [JsonProperty("基地参数")]
- public Base originbase;
- [JsonProperty("巡护航线参数")]
- public AirRoute[] airroute = new AirRoute[1];
-
- [JsonProperty("任务点")]
- public MissionPoint missionpoint = new MissionPoint();
- [JsonProperty("火点")]
- public FirePoint[] firepoint = new FirePoint[1];
-
- [JsonProperty("爬升段")]
- public ClimbSegment climbsegment = new ClimbSegment();
- [JsonProperty("下降段")]
- public DescentSegment descentsegment = new DescentSegment();
- [JsonProperty("巡航段")]
- public CruiseSegment cruisesegment = new CruiseSegment();
- }
|