package com.qianwen.core.notify.template; import java.io.Serializable; public class TemplateProperties implements Serializable { private String type; private String provider; private String template; public void setType(final String type) { this.type = type; } public void setProvider(final String provider) { this.provider = provider; } public void setTemplate(final String template) { this.template = template; } public String getType() { return this.type; } public String getProvider() { return this.provider; } public String getTemplate() { return this.template; } }