Skip to content

Instantly share code, notes, and snippets.

@nxsyed
Created February 19, 2019 19:10
Show Gist options
  • Save nxsyed/73335ae54ce09ef1ed573fec0cab6382 to your computer and use it in GitHub Desktop.
Save nxsyed/73335ae54ce09ef1ed573fec0cab6382 to your computer and use it in GitHub Desktop.
data class Spot(
val id: Long = counter++,
var name: String,
val distance: String,
val url: String
) {
companion object {
private var counter = 0L
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment