Created
February 4, 2018 18:28
-
-
Save antonicg/cb620460d4f30b27ec388c31f2aa89b1 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.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