Created
July 30, 2021 14:25
-
-
Save SamueldaCostaAraujoNunes/f3cdbd1391ceb6bd0d45793ea2e7c8cb to your computer and use it in GitHub Desktop.
This file contains 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
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