Subversion Repositories SmartDukaan

Rev

Rev 21431 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21426 ashik.ali 1
package com.spice.profitmandi.web.req;
2
 
3
import java.util.Set;
4
 
5
public class RetailerAddBrandRequest {
6
	private long retailerId;
7
	private Set<String> brandNames;
8
	public long getRetailerId() {
9
		return retailerId;
10
	}
11
	public void setRetailerId(long retailerId) {
12
		this.retailerId = retailerId;
13
	}
14
	public Set<String> getBrandNames() {
15
		return brandNames;
16
	}
17
	public void setBrandNames(Set<String> brandNames) {
18
		this.brandNames = brandNames;
19
	}
20
}