Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
21750 ashik.ali 1
package com.spice.profitmandi.web.request;
2
 
3
import com.spice.profitmandi.dao.enumuration.fofo.TagType;
4
 
5
public class CreateTagRequest {
6
	private String label;
7
	private TagType tagType;
8
	private String description;
9
	private boolean pinAll;
10
	private boolean userAll;
11
	public String getLabel() {
12
		return label;
13
	}
14
	public void setLabel(String label) {
15
		this.label = label;
16
	}
17
	public TagType getTagType() {
18
		return tagType;
19
	}
20
	public void setTagType(TagType tagType) {
21
		this.tagType = tagType;
22
	}
23
	public String getDescription() {
24
		return description;
25
	}
26
	public void setDescription(String description) {
27
		this.description = description;
28
	}
29
	public boolean isPinAll() {
30
		return pinAll;
31
	}
32
	public void setPinAll(boolean pinAll) {
33
		this.pinAll = pinAll;
34
	}
35
	public boolean isUserAll() {
36
		return userAll;
37
	}
38
	public void setUserAll(boolean userAll) {
39
		this.userAll = userAll;
40
	}
41
 
42
}