Moodl/app/src/main/java/com/herbron/moodl/CurrencyInfoUpdateNotifierInterface.java
Tanguy Herbron 92f08e00ed Update code with new interfaces for a clearer code (I hope so...)
- Preview of the RecordTransactionActivity buying UI
- MarketCapManager.java and CoinmarketCapAPIManager are now merged
2018-08-03 03:22:20 +02:00

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);
}