package com.dacrt.SBIABackend.dto;

public class TestStatusResquestDto {
	private int units;
	private String apptype;
	private String testtype;
	public TestStatusResquestDto() {
		super();
	}
	public TestStatusResquestDto(int units, String apptype, String testtype) {
		super();
		this.units = units;
		this.apptype = apptype;
		this.testtype = testtype;
	}
	public int getUnits() {
		return units;
	}
	public void setUnits(int units) {
		this.units = units;
	}
	public String getApptype() {
		return apptype;
	}
	public void setApptype(String apptype) {
		this.apptype = apptype;
	}
	public String getTesttype() {
		return testtype;
	}
	public void setTesttype(String testtype) {
		this.testtype = testtype;
	}
}
