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

Airport.cs 417 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 Airport
  5. {
  6. [JsonProperty("airport_code")]
  7. public string AirportCode { get; set; }
  8. [JsonProperty("city")]
  9. public string City { get; set; }
  10. [JsonProperty("terminal")]
  11. public string Terminal { get; set; }
  12. [JsonProperty("gate")]
  13. public string Gate { get; set; }
  14. }
  15. }
Tip!

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

Comments

Loading...