package com.dacrt.SBIABackend.dto;

public class RtoRespDto {
	private String qty;
	
	private PeriodParResponseDto periodpar;

	public RtoRespDto() {
		super();
	}

	public RtoRespDto(String qty, PeriodParResponseDto periodpar) {
		super();
		this.qty = qty;
		this.periodpar = periodpar;
	}

	public String getQty() {
		return qty;
	}

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

	public PeriodParResponseDto getPeriodpar() {
		return periodpar;
	}

	public void setPeriodpar(PeriodParResponseDto periodpar) {
		this.periodpar = periodpar;
	}

	
	
}
