- Preview of the RecordTransactionActivity buying UI - MarketCapManager.java and CoinmarketCapAPIManager are now merged
14 lines
276 B
Java
14 lines
276 B
Java
package com.herbron.moodl;
|
|
|
|
import com.herbron.moodl.DataManagers.CurrencyData.Currency;
|
|
|
|
public interface CurrencyInfoUpdateNotifierInterface {
|
|
|
|
void onTimestampPriveUpdated(String price);
|
|
|
|
void onHistoryDataUpdated();
|
|
|
|
void onPriceUpdated(Currency currency);
|
|
|
|
}
|