Created
January 2, 2019 15:00
-
-
Save raghunandankavi2010/3d71b29b80771ce236ee39a90a170208 to your computer and use it in GitHub Desktop.
koim
This file contains hidden or 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
class ListScreenViewModel(private val repo: ListRepositoryImpl) : ViewModel() { | |
fun getUsers() : LiveData<List<Users>> { | |
return repo.getUsers() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment