package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class ChannelsRankingDto {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private ProcessTypeDto3 type;
	
	@NotNull
	private int rtomin;
	
	public ChannelsRankingDto() {
		super();
	}

	public ChannelsRankingDto(@NotNull Integer id, @NotNull String name, @NotNull ProcessTypeDto3 type,
			@NotNull int rtomin) {
		super();
		this.id = id;
		this.name = name;
		this.type = type;
		this.rtomin = rtomin;
	}

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

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

	public int getRtomin() {
		return rtomin;
	}

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