Blame | Last modification | View Log | RSS feed
package in.shop2020.catalog.dashboard.shared;import java.io.Serializable;import com.google.gwt.user.client.rpc.IsSerializable;@SuppressWarnings("serial")public class VoucherItemMapping implements IsSerializable, Serializable {long amount;String voucherType;public VoucherItemMapping() {}public VoucherItemMapping(long amount, String voucherType) {this.amount = amount;this.voucherType = voucherType;}public long getAmount() {return amount;}public void setAmount(long amount) {this.amount = amount;}public String getVoucherType() {return voucherType;}public void setVoucherType(String voucherType) {this.voucherType = voucherType;}}