Skip to content

Instantly share code, notes, and snippets.

@wangerekaharun
Created October 27, 2019 12:17
Show Gist options
  • Select an option

  • Save wangerekaharun/d138e284a5c08cdec372c1e856f9c0ce to your computer and use it in GitHub Desktop.

Select an option

Save wangerekaharun/d138e284a5c08cdec372c1e856f9c0ce to your computer and use it in GitHub Desktop.
Song Data Class
@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