package com.dacrt.SBIABackend.dto;

public class SceneryDto2 {
	private String value;
	private String dsc;
	public SceneryDto2() {
		super();
	}
	public SceneryDto2(String value, String dsc) {
		super();
		this.value = value;
		this.dsc = dsc;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	public String getDsc() {
		return dsc;
	}
	public void setDsc(String dsc) {
		this.dsc = dsc;
	}
	
	
}
