package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class RecuperationgapsDto {
	private String name;
	private java.math.BigInteger qty;
	public RecuperationgapsDto() {
		super();
	}
	public RecuperationgapsDto(String name, BigInteger qty) {
		super();
		this.name = name;
		this.qty = qty;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public java.math.BigInteger getQty() {
		return qty;
	}
	public void setQty(java.math.BigInteger qty) {
		this.qty = qty;
	}
	
}
