Mercurial > public > geoquiz
view GeoQuiz/Models/CityPopulation.swift @ 0:413e2d21333e
first commit
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 20 Sep 2022 08:13:26 +0200 |
parents | |
children |
line wrap: on
line source
// // CityPopulation.swift // GeoQuiz // // Created by Dennis Concepción Martín on 7/9/22. // import Foundation struct CityPopulation: Codable { let cities: [String: City] struct City: Codable { let country: String let population: [Population] } struct Population: Codable { let year: Int let value: Int } }