Skip to content

Instantly share code, notes, and snippets.

@SamueldaCostaAraujoNunes
Created July 30, 2021 14:25
Show Gist options
  • Save SamueldaCostaAraujoNunes/f3cdbd1391ceb6bd0d45793ea2e7c8cb to your computer and use it in GitHub Desktop.
Save SamueldaCostaAraujoNunes/f3cdbd1391ceb6bd0d45793ea2e7c8cb to your computer and use it in GitHub Desktop.
package br.com.samuelnunes.rickandmortyapp.data.entities
data class Character(
val id: Int,
val name: String,
val status: String,
val species: String,
val type: String,
val gender: String,
val image: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment