Created
March 3, 2018 02:43
-
-
Save cdmunoz/6d95bcc3b615e34452a48b3287519adb to your computer and use it in GitHub Desktop.
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
@Database(entities = arrayOf(Cryptocurrency::class), version = 1) | |
abstract class Database : RoomDatabase() { | |
abstract fun cryptocurrenciesDao(): CryptocurrenciesDao | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment