package com.dacrt.SBIABackend.dto;

public class ChannelsRankingApplicationsDto {
	
	private Integer id;
	private String name;
    private OperationlineSinStatusDto type;
    private OperationlineSinStatusDto drptested;
    private Integer rtomin;
    
	public ChannelsRankingApplicationsDto(Integer id, String name, OperationlineSinStatusDto type,
			OperationlineSinStatusDto drptested, Integer rtomin) {
		super();
		this.id = id;
		this.name = name;
		this.type = type;
		this.drptested = drptested;
		this.rtomin = rtomin;
	}

	public ChannelsRankingApplicationsDto() {
		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 OperationlineSinStatusDto getType() {
		return type;
	}

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

	public OperationlineSinStatusDto getDrptested() {
		return drptested;
	}

	public void setDrptested(OperationlineSinStatusDto drptested) {
		this.drptested = drptested;
	}

	public Integer getRtomin() {
		return rtomin;
	}

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