Skip to content

Instantly share code, notes, and snippets.

@bpisano
Created June 18, 2019 08:26
Show Gist options
  • Select an option

  • Save bpisano/d5a47957b28804cda3a65de2d82afd05 to your computer and use it in GitHub Desktop.

Select an option

Save bpisano/d5a47957b28804cda3a65de2d82afd05 to your computer and use it in GitHub Desktop.
Embedded code in my Weather article on Medium
struct DailyWeather: Codable, Identifiable {
var id: Date {
return time
}
var time: Date
var maxTemperature: Double
var minTemperature: Double
var icon: Weather.Icon
enum CodingKeys: String, CodingKey {
case time = "time"
case maxTemperature = "temperatureHigh"
case minTemperature = "temperatureLow"
case icon = "icon"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment