Guest User

Untitled

a guest
Nov 14th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package fr.ippon.androidaacsample.coinsentinel.db
  2.  
  3. import androidx.room.Entity
  4. import androidx.room.PrimaryKey
  5.  
  6. @Entity(tableName = "COIN")
  7. data class Coin (
  8. @PrimaryKey
  9. val id: Long,
  10. val name: String,
  11. val code: String,
  12. val rank: Int,
  13. val price: String
  14. )
Add Comment
Please, Sign In to add comment