package com.dacrt.SBIABackend.dto;

public class RtoDto {
	private Integer min;
	private Integer ti;
	public RtoDto() {
		super();
	}
	public RtoDto(Integer min, Integer ti) {
		super();
		this.min = min;
		this.ti = ti;
	}
	public Integer getMin() {
		return min;
	}
	public void setMin(Integer min) {
		this.min = min;
	}
	public Integer getTi() {
		return ti;
	}
	public void setTi(Integer ti) {
		this.ti = ti;
	}
	
	
}
