Created
February 4, 2018 17:50
-
-
Save antonicg/4dd397ab25fbe4b1ac899c3a958ff35e to your computer and use it in GitHub Desktop.
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
package com.antonicastejon.cryptodata.model | |
import io.reactivex.Single | |
/** | |
* Created by Antoni Castejón on 31/12/2017. | |
*/ | |
interface CoinMarketCapRepository { | |
fun getCryptoList(page:Int, limit:Int) : Single<List<Crypto>> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment