Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

FlightInfo.cs 491 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. namespace ChannelDataBot.Models
  2. {
  3. using Newtonsoft.Json;
  4. public class FlightInfo
  5. {
  6. [JsonProperty("flight_number")]
  7. public string FlightNumber { get; set; }
  8. [JsonProperty("departure_airport")]
  9. public Airport DepartureAirport { get; set; }
  10. [JsonProperty("arrival_airport")]
  11. public Airport ArrivalAirport { get; set; }
  12. [JsonProperty("flight_schedule")]
  13. public FlightSchedule FlightSchedule { get; set; }
  14. }
  15. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...