Skip to content

Instantly share code, notes, and snippets.

@thatswiftguy
Created May 5, 2021 16:50
Show Gist options
  • Save thatswiftguy/a356759b6d608147974b23b2e43c7041 to your computer and use it in GitHub Desktop.
Save thatswiftguy/a356759b6d608147974b23b2e43c7041 to your computer and use it in GitHub Desktop.
struct WeatherData : Codable {
let name : String
let main : Main
let weather : [Weather]
}
struct Main : Codable {
let temp : Double
}
struct Weather : Codable {
let description : String
let id : Int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment