Skip to content

Instantly share code, notes, and snippets.

@AOrobator
Created February 13, 2018 04:22
Show Gist options
  • Select an option

  • Save AOrobator/669b4dbad3bc8c936d27d1ed6370973c to your computer and use it in GitHub Desktop.

Select an option

Save AOrobator/669b4dbad3bc8c936d27d1ed6370973c to your computer and use it in GitHub Desktop.
data class SongId(id: Long)
val Song.typedId: SongId = SongId(this.id)
data class PlaylistId(id: Long)
val Playlist.typedId: PlaylistId = PlaylistId(this.id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment