Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21348 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class DealBrands {
4
 
5
	private int count;
6
	private int brand_id;
7
	private String brand;
8
 
9
	public int getCount() {
10
		return count;
11
	}
12
	public void setCount(int count) {
13
		this.count = count;
14
	}
15
	public int getBrand_id() {
16
		return brand_id;
17
	}
18
	public void setBrand_id(int brand_id) {
19
		this.brand_id = brand_id;
20
	}
21
	public String getBrand() {
22
		return brand;
23
	}
24
	public void setBrand(String brand) {
25
		this.brand = brand;
26
	}
27
 
28
 
29
}