package com.dacrt.SBIABackend.dto;

public class ImpactChannelresumeDto {
	
	private String channel;
	private String type;
	private Integer processes;
	private String rto;
	
	public ImpactChannelresumeDto(String channel, String type, Integer processes, String rto) {
		super();
		this.channel = channel;
		this.type = type;
		this.processes = processes;
		this.rto = rto;
	}

	public ImpactChannelresumeDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public String getChannel() {
		return channel;
	}

	public void setChannel(String channel) {
		this.channel = channel;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public Integer getProcesses() {
		return processes;
	}

	public void setProcesses(Integer processes) {
		this.processes = processes;
	}

	public String getRto() {
		return rto;
	}

	public void setRto(String rto) {
		this.rto = rto;
	}
	
}
