Skip to content

Instantly share code, notes, and snippets.

@antonicg
Created February 4, 2018 18:28
Show Gist options
  • Save antonicg/cb620460d4f30b27ec388c31f2aa89b1 to your computer and use it in GitHub Desktop.
Save antonicg/cb620460d4f30b27ec388c31f2aa89b1 to your computer and use it in GitHub Desktop.
package com.antonicastejon.cryptodata.domain
import android.os.Parcel
import android.os.Parcelable
import io.reactivex.Single
/**
* Created by Antoni Castejón on 31/12/2017.
*/
interface CryptoListUseCases {
fun getCryptoListBy(page: Int) : Single<List<CryptoViewModel>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment