package com.dacrt.SBIABackend.dto;

public class HeaderDto {
	
	private String title;
    private String subtitle;
    
	public HeaderDto(String title, String subtitle) {
		super();
		this.title = title;
		this.subtitle = subtitle;
	}

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

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getSubtitle() {
		return subtitle;
	}

	public void setSubtitle(String subtitle) {
		this.subtitle = subtitle;
	}
    
}


