package com.bizofficer.module.questionmcmt;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ItemBeanMCMT {

	private String Description;
	private PresentationBeanMCMT presentation;
	private String title, DIV, SVG, ident;	
	private ResprocessingBeanMCMT resprocessing;
	
	
	public PresentationBeanMCMT getPresentation() {
		return presentation;
	}
	public void setPresentation(PresentationBeanMCMT presentation) {
		this.presentation = presentation;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getDIV() {
		return DIV;
	}
	public void setDIV(String dIV) {
		DIV = dIV;
	}
	public String getSVG() {
		return SVG;
	}
	public void setSVG(String sVG) {
		SVG = sVG;
	}
	public String getIdent() {
		return ident;
	}
	public void setIdent(String ident) {
		this.ident = ident;
	}
	public ResprocessingBeanMCMT getResprocessing() {
		return resprocessing;
	}
	public void setResprocessing(ResprocessingBeanMCMT resprocessing) {
		this.resprocessing = resprocessing;
	}
	public String getDescription() {
		return Description;
	}
	public void setDescription(String description) {
		Description = description;
	}
	
	
	
	
	
	

	

	
	
	
}
