package com.qianwen.core.notify.template;
|
|
import java.io.Serializable;
|
|
/* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/template/TemplateProperties.class */
|
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;
|
}
|
}
|