package com.dacrt.SBIABackend.dto;

public class ChannelsRankingProcessesDto {
	
	private Integer id;
    private String name;
    private Integer rtomin;
    private IddscDto type;
    private IddscDto operationline;

	public ChannelsRankingProcessesDto(Integer id, String name, Integer rtomin, IddscDto type, IddscDto operationline) {
		super();
		this.id = id;
		this.name = name;
		this.rtomin = rtomin;
		this.type = type;
		this.operationline = operationline;
	}

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

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Integer getRtomin() {
		return rtomin;
	}

	public void setRtomin(Integer rtomin) {
		this.rtomin = rtomin;
	}

	public IddscDto getType() {
		return type;
	}

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

	public IddscDto getOperationline() {
		return operationline;
	}

	public void setOperationline(IddscDto operationline) {
		this.operationline = operationline;
	}
    

}
