Skip to content

Instantly share code, notes, and snippets.

@tolmachevroman
Last active November 26, 2017 05:12
Show Gist options
  • Save tolmachevroman/5758c0c76bb7076deb236a64671c5938 to your computer and use it in GitHub Desktop.
Save tolmachevroman/5758c0c76bb7076deb236a64671c5938 to your computer and use it in GitHub Desktop.
Medium Post 1. Restaurant entity
@Entity
data class Restaurant(@PrimaryKey val id: Int, val cuisine: Int?, val name: String?,
val lat: Double, val lng: Double, val price: Int,
val image: String = "", val description: String = "") : Serializable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment