Skip to content

Instantly share code, notes, and snippets.

@Banck
Created July 7, 2018 11:02
Show Gist options
  • Save Banck/89e5b6feef84952fba76b520c6edac64 to your computer and use it in GitHub Desktop.
Save Banck/89e5b6feef84952fba76b520c6edac64 to your computer and use it in GitHub Desktop.
struct Place {
var id: String?
var name: String?
var position: String?
init(_ json: JSON) {
id = json["id"].string
name = json["name"].string
position = json["position"].string
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment