package com.dacrt.SBIABackend.dto;

public class LabelValueStringDto {

	private String label;
	private String value;
	
	public LabelValueStringDto(String label, String value) {
		super();
		this.label = label;
		this.value = value;
	}

	public LabelValueStringDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public String getValue() {
		return value;
	}

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