Rev 21431 | 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 long retailerId;private Set<String> brandNames;public long getRetailerId() {return retailerId;}public void setRetailerId(long retailerId) {this.retailerId = retailerId;}public Set<String> getBrandNames() {return brandNames;}public void setBrandNames(Set<String> brandNames) {this.brandNames = brandNames;}}