Last active
November 26, 2017 05:12
-
-
Save tolmachevroman/5758c0c76bb7076deb236a64671c5938 to your computer and use it in GitHub Desktop.
Medium Post 1. Restaurant entity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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