package com.dacrt.SBIABackend.dto.responseDto;

import java.util.List;

import com.dacrt.SBIABackend.dto.ChannelsRankingRecordDto;
import com.dacrt.SBIABackend.dto.OperationlineDto;
import com.dacrt.SBIABackend.dto.TesttypesDto;
import com.dacrt.SBIABackend.dto.TypesUnitDto;

public class ChannelsRankingResponseDto {
	
	
	private Long numofrecords;
	private String sessionvalidthru;
	private List<ChannelsRankingRecordDto> records;
    private List<TypesUnitDto> channeltype;
    
	public ChannelsRankingResponseDto(Long numofrecords, String sessionvalidthru,
			List<ChannelsRankingRecordDto> records, List<TypesUnitDto> channeltype) {
		super();
		this.numofrecords = numofrecords;
		this.sessionvalidthru = sessionvalidthru;
		this.records = records;
		this.channeltype = channeltype;
	}

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

	public Long getNumofrecords() {
		return numofrecords;
	}

	public void setNumofrecords(Long numofrecords) {
		this.numofrecords = numofrecords;
	}

	public String getSessionvalidthru() {
		return sessionvalidthru;
	}

	public void setSessionvalidthru(String sessionvalidthru) {
		this.sessionvalidthru = sessionvalidthru;
	}

	public List<ChannelsRankingRecordDto> getRecords() {
		return records;
	}

	public void setRecords(List<ChannelsRankingRecordDto> records) {
		this.records = records;
	}

	public List<TypesUnitDto> getChanneltype() {
		return channeltype;
	}

	public void setChanneltype(List<TypesUnitDto> channeltype) {
		this.channeltype = channeltype;
	}

}
