package com.dacrt.SBIABackend.dto;

public class HeaderUnitResumeBCPDto {
	private String title;
	private String customer;
	private String user;
	public HeaderUnitResumeBCPDto() {
		super();
	}
	public HeaderUnitResumeBCPDto(String title, String customer, String user) {
		super();
		this.title = title;
		this.customer = customer;
		this.user = user;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getCustomer() {
		return customer;
	}
	public void setCustomer(String customer) {
		this.customer = customer;
	}
	public String getUser() {
		return user;
	}
	public void setUser(String user) {
		this.user = user;
	}
	
}
