Subversion Repositories SmartDukaan

Rev

Rev 21532 | Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res;

public class UserWalletResponse {
        
        private int amount;
        private int refundableAmount;
        
        public int getAmount() {
                return amount;
        }
        public void setAmount(int amount) {
                this.amount = amount;
        }
        public int getRefundableAmount() {
                return refundableAmount;
        }
        public void setRefundableAmount(int refundableAmount) {
                this.refundableAmount = refundableAmount;
        }

}