package com.dacrt.SBIABackend.dto;

import java.math.BigInteger;

public class ImpactAppsresumeDto {

	private String application;
	private Integer channels;
	private String type;
	private BigInteger processes;
	private String rto;
	public ImpactAppsresumeDto() {
		super();
	}
	public ImpactAppsresumeDto(String application, Integer channels, String type, BigInteger processes, String rto) {
		super();
		this.application = application;
		this.channels = channels;
		this.type = type;
		this.processes = processes;
		this.rto = rto;
	}
	public String getApplication() {
		return application;
	}
	public void setApplication(String application) {
		this.application = application;
	}
	public Integer getChannels() {
		return channels;
	}
	public void setChannels(Integer channels) {
		this.channels = channels;
	}
	public String getType() {
		return type;
	}
	public void setType(String type) {
		this.type = type;
	}
	public BigInteger getProcesses() {
		return processes;
	}
	public void setProcesses(BigInteger processes) {
		this.processes = processes;
	}
	public String getRto() {
		return rto;
	}
	public void setRto(String rto) {
		this.rto = rto;
	}
	
	
	
}
