Guest User

Untitled

a guest
Nov 14th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package fr.ippon.androidaacsample.coinsentinel.db
  2.  
  3. import androidx.room.Database
  4. import androidx.room.RoomDatabase
  5.  
  6. @Database(entities = [Coin::class], version = 1, exportSchema = false)
  7. abstract class AppDatabase : RoomDatabase() {
  8. abstract fun coinDao(): CoinDao
  9. }
Add Comment
Please, Sign In to add comment