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

FlightSchedule.cs 397 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
  1. namespace ChannelDataBot.Models
  2. {
  3. using System;
  4. using Newtonsoft.Json;
  5. public class FlightSchedule
  6. {
  7. [JsonProperty("boarding_time")]
  8. public string BoardingTime { get; set; }
  9. [JsonProperty("departure_time")]
  10. public string DepartureTime { get; set; }
  11. [JsonProperty("arrival_time")]
  12. public string ArrivalTime { get; set; }
  13. }
  14. }
Tip!

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

Comments

Loading...