-
-
Save wangerekaharun/d138e284a5c08cdec372c1e856f9c0ce to your computer and use it in GitHub Desktop.
Song Data Class
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 Song( | |
| @PrimaryKey | |
| val id: Long, | |
| val url: String, | |
| val songName: String, | |
| val artistName: String, | |
| val albumName: String | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment