package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class LevelDto {
	@NotNull
	private String dsc;
	
	@NotNull
	private String value;

	public LevelDto() {
		super();
	}

	public LevelDto(@NotNull String dsc, @NotNull 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;
	}
}
