Blame | Last modification | View Log | RSS feed
package pricing;import java.util.List;public class PricingHistoryItems {String page;String total;String records;List<PricingHistory> rows;public String getPage() {return page;}public void setPage(String page) {this.page = page;}public String getTotal() {return total;}public void setTotal(String total) {this.total = total;}public String getRecords() {return records;}public void setRecords(String records) {this.records = records;}public List<PricingHistory> getRows() {return rows;}public void setRows(List<PricingHistory> rows) {this.rows = rows;}}