package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class ImpactReportScoperesumeDto {
	private String name;
	private BigInteger qty;
	public ImpactReportScoperesumeDto() {
		super();
	}
	public ImpactReportScoperesumeDto(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 BigInteger getQty() {
		return qty;
	}
	public void setQty(BigInteger qty) {
		this.qty = qty;
	}
	
	
}

