Skip to content

Instantly share code, notes, and snippets.

@Chrispassold
Created September 2, 2020 17:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chrispassold/b7ad2b11777a919f7928b0e3e354d3de to your computer and use it in GitHub Desktop.
Save Chrispassold/b7ad2b11777a919f7928b0e3e354d3de to your computer and use it in GitHub Desktop.
data class UserProperty internal constructor(
val key: String,
val value: Any
) {
override fun toString(): String {
return "UserProperty(key='$key', value=$value)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment