Skip to content

Instantly share code, notes, and snippets.

@cdmunoz
Created March 12, 2018 21:42
Show Gist options
  • Save cdmunoz/95be632488cb500afc5a3f06bf01f55b to your computer and use it in GitHub Desktop.
Save cdmunoz/95be632488cb500afc5a3f06bf01f55b to your computer and use it in GitHub Desktop.
@Entity(
tableName = "cryptocurrencies"
)
data class Cryptocurrency(
@Json(name = "id")
@PrimaryKey
val id: String,
@Json(name = "name")
val name: String?
// ... other attributes
) : Serializable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment