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.model; // w w w. j a v a 2 s. c om import java.util.List; public class PriceListWrapper { List<Price> prices; public PriceListWrapper(List<Price> prices) { this.prices = prices; } public List<Price> getPrices() { return prices; } }