Subversion Repositories SmartDukaan

Rev

Rev 21730 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21431 ashik.ali 1
package com.spice.profitmandi.web.req;
2
 
3
public class Brand {
4
	private int id;
5
	private String name;
6
	public int getId() {
7
		return id;
8
	}
9
	public void setId(int id) {
10
		this.id = id;
11
	}
12
	public String getName() {
13
		return name;
14
	}
15
	public void setName(String name) {
16
		this.name = name;
17
	}
18
 
19
}