Skip to content

Instantly share code, notes, and snippets.

@desamtralized
Last active January 12, 2016 01:22
Show Gist options
  • Save desamtralized/c58d532a85891d665ac9 to your computer and use it in GitHub Desktop.
Save desamtralized/c58d532a85891d665ac9 to your computer and use it in GitHub Desktop.
@ParseClassName("Car")
class Car : ParseObject() {
var brand: String?
get() {
return this.getString("car")
}
set(value) {
this.put("car", value)
}
var image: ParseFile?
get() {
return this.getParseFile("image")
}
set(value) {
this.put("car", value)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment