Back to project page SurgePriceWidget.
The source code is released under:
MIT License
If you think the Android project SurgePriceWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.surgepricewidget.api.event; // www. j a va 2 s . c o m import me.mattlogan.surgepricewidget.api.model.PriceListWrapper; public class RetrievePricesSuccessEvent { PriceListWrapper priceListWrapper; public RetrievePricesSuccessEvent(PriceListWrapper priceListWrapper) { this.priceListWrapper = priceListWrapper; } public PriceListWrapper getPriceListWrapper() { return priceListWrapper; } }