package com.bizofficer.module.questionmr;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class PresentationBeanMR {

	private String label;
	private FlowBeanMR flow;
	
	
	public String getLabel() {
		return label;
	}
	public void setLabel(String label) {
		this.label = label;
	}
	public FlowBeanMR getFlow() {
		return flow;
	}
	public void setFlow(FlowBeanMR flow) {
		this.flow = flow;
	}
	

	

	

	
	
	
}
