Rev 21426 | Rev 21448 | 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;import java.util.Set;public class RetailerAddBrandRequest {private int retailerId;private Set<String> brandNames;public int getRetailerId() {return retailerId;}public void setRetailerId(int retailerId) {this.retailerId = retailerId;}public Set<String> getBrandNames() {return brandNames;}public void setBrandNames(Set<String> brandNames) {this.brandNames = brandNames;}}