package com.dacrt.SBIABackend.security.dto;

public class EntrypointsDto {
	
	private String dsc;
	private String value;
	public EntrypointsDto() {
		super();
		// TODO Auto-generated constructor stub
	}
	public EntrypointsDto(String dsc, String value) {
		super();
		this.dsc = dsc;
		this.value = value;
	}
	public String getDsc() {
		return dsc;
	}
	public void setDsc(String dsc) {
		this.dsc = dsc;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	
	
	

}
