package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class StatusDto2 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;

	public StatusDto2() {
		super();
	}

	public StatusDto2(@NotNull Integer id, @NotNull String name) {
		super();
		this.id = id;
		this.name = name;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	
	
}
