package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

import javax.validation.constraints.NotNull;

public class UnidadResponseRelatedDto {
	@NotNull
	private Integer id;
	
	private Integer unitprocessid;
	
	@NotNull
	private String name;
	
	@NotNull
	private boolean relationdeleted;

	public UnidadResponseRelatedDto() {
		super();
	}

	public UnidadResponseRelatedDto(@NotNull Integer id, Integer unitprocessid, @NotNull String name,
			@NotNull boolean relationdeleted) {
		super();
		this.id = id;
		this.unitprocessid = unitprocessid;
		this.name = name;
		this.relationdeleted = relationdeleted;
	}

	public Integer getId() {
		return id;
	}

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

	public Integer getUnitprocessid() {
		return unitprocessid;
	}

	public void setUnitprocessid(Integer unitprocessid) {
		this.unitprocessid = unitprocessid;
	}

	public String getName() {
		return name;
	}

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

	public boolean isRelationdeleted() {
		return relationdeleted;
	}

	public void setRelationdeleted(boolean relationdeleted) {
		this.relationdeleted = relationdeleted;
	}

}
