package com.dacrt.SBIABackend.dto.responseDto;

import java.util.List;

import com.dacrt.SBIABackend.dto.DahboardappprocessdisttopContentDto;
import com.dacrt.SBIABackend.dto.DahboardcampaignContentDto;
import com.dacrt.SBIABackend.dto.DahboardcampaignHeadersDto;

public class DahboardapptopResponseDto {

	private DahboardcampaignHeadersDto header;
	private List<DahboardappprocessdisttopContentDto> content;
	
	public DahboardapptopResponseDto(DahboardcampaignHeadersDto header,
			List<DahboardappprocessdisttopContentDto> content) {
		super();
		this.header = header;
		this.content = content;
	}

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

	public DahboardcampaignHeadersDto getHeader() {
		return header;
	}

	public void setHeader(DahboardcampaignHeadersDto header) {
		this.header = header;
	}

	public List<DahboardappprocessdisttopContentDto> getContent() {
		return content;
	}

	public void setContent(List<DahboardappprocessdisttopContentDto> content) {
		this.content = content;
	}
	
}
