package com.transformuk.bdt.model;
import java.util.HashMap;
import java.util.Map;
public class ProfileQuestions {
private String businessStage;
private String currentPageName;
private Map<String, String> values = new HashMap<String, String>();
public String getBusinessStage() {
return businessStage;
}
public void setBusinessStage(String businessStage) {
this.businessStage = businessStage;
}
public Map<String, String> getValues() {
return values;
}
public void setValues(Map<String, String> values) {
this.values = values;
}
public String getCurrentPageName() {
return currentPageName;
}
public void setCurrentPageName(String currentPageName) {
this.currentPageName = currentPageName;
}
}