Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package pricing;

import java.util.List;

public class CurrentPricingItems {
        String page;
        String total;
        String records;
        List<CurrentPricing> 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<CurrentPricing> getRows() {
                return rows;
        }
        public void setRows(List<CurrentPricing> rows) {
                this.rows = rows;
        }
}