package dto;

public class SchoolDTO {
	private String name;
	private String value;
	private int code;
	
	public SchoolDTO() {}
	
 	public SchoolDTO(String name, String value, int code) {
 		this.name = name;
 		this.value = value;
 		this.code = code;
 	}
 	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}

	public int getCode() {
		return code;
	}
	public void setCode(int code) {
		this.code = code;
	}

}