package com.dacrt.SBIABackend.dto;

import java.util.Date;

public class RequestersRequestDto {
	private int status;
    private String name;
    private String dsc;
	private ContactDto contact;
	private Integer type;
	
	public RequestersRequestDto() {
		super();
	}

	public RequestersRequestDto(int status, String name, String dsc, ContactDto contact, Integer type) {
		super();
		this.status = status;
		this.name = name;
		this.dsc = dsc;
		this.contact = contact;
		this.type = type;
	}

	public int getStatus() {
		return status;
	}

	public void setStatus(int status) {
		this.status = status;
	}

	public String getName() {
		return name;
	}

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

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}

	public ContactDto getContact() {
		return contact;
	}

	public void setContact(ContactDto contact) {
		this.contact = contact;
	}

	public Integer getType() {
		return type;
	}

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