package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

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

	private StatusDto2 status;

	public UnitsResponseDto() {
		super();
	}

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

	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;
	}
	
	public StatusDto2 getStatus() {
		return status;
	}

	public void setStatus(StatusDto2 status) {
		this.status = status;
	}
	
}
