Last active
February 8, 2020 11:55
-
-
Save sanogueralorenzo/24d235c5f6d3efad3d2deab8daf9d182 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
data class Resource<out T> constructor( | |
val state: ResourceState, | |
val data: T? = null, | |
val message: String? = null | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment