Last active
June 13, 2019 14:33
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
//rxjava-challenge | |
class City(val id: Int, val name:String) | |
class Province(val id: Int ,val name:String) | |
fun getProvinces(): Observable<List<Province>> | |
fun getCityByProvinceId(val provinceId: Int): Observable<List<City>> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment