Subversion Repositories SmartDukaan

Rev

Rev 21734 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.res;

import com.spice.profitmandi.dao.model.CartResponse;

public class ValidateCartResponse {
        
        private CartResponse cartResponse;
        private String response;
        private String message;
        
        public ValidateCartResponse(CartResponse cartResponse, String response, String message) {
                super();
                this.cartResponse = cartResponse;
                this.response = response;
                this.message = message;
        }
        
        
        public CartResponse getCartResponse() {
                return cartResponse;
        }
        public void setCartResponse(CartResponse cartResponse) {
                this.cartResponse = cartResponse;
        }
        public String getResponse() {
                return response;
        }
        public void setResponse(String response) {
                this.response = response;
        }
        public String getMessage() {
                return message;
        }
        public void setMessage(String message) {
                this.message = message;
        }
}