Subversion Repositories SmartDukaan

Rev

Rev 21431 | Rev 21734 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.req;

public class LineOfBusiness {
        private boolean recharge;
    private boolean mobile;
    private boolean accessories;
    private String other1;
    private String other2;
        public boolean isRecharge() {
                return recharge;
        }
        public void setRecharge(boolean recharge) {
                this.recharge = recharge;
        }
        public boolean isMobile() {
                return mobile;
        }
        public void setMobile(boolean mobile) {
                this.mobile = mobile;
        }
        public boolean isAccessories() {
                return accessories;
        }
        public void setAccessories(boolean accessories) {
                this.accessories = accessories;
        }
        public String getOther1() {
                return other1;
        }
        public void setOther1(String other1) {
                this.other1 = other1;
        }
        public String getOther2() {
                return other2;
        }
        public void setOther2(String other2) {
                this.other2 = other2;
        }
}