package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RangesRecursosDto2 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String label;
	
	@NotNull
	private Integer qty;

	public RangesRecursosDto2() {
		super();
	}

	public RangesRecursosDto2(@NotNull Integer id, @NotNull String label, @NotNull Integer qty) {
		super();
		this.id = id;
		this.label = label;
		this.qty = qty;
	}

	public Integer getId() {
		return id;
	}

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

	public String getLabel() {
		return label;
	}

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

	public Integer getQty() {
		return qty;
	}

	public void setQty(Integer qty) {
		this.qty = qty;
	}
	
}
