Skip to content

Instantly share code, notes, and snippets.

@antonicg
Created February 4, 2018 17:50
Show Gist options
  • Save antonicg/4dd397ab25fbe4b1ac899c3a958ff35e to your computer and use it in GitHub Desktop.
Save antonicg/4dd397ab25fbe4b1ac899c3a958ff35e to your computer and use it in GitHub Desktop.
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