yangys
2024-04-05 84dea9976c29ac938fa018b8566c71461b056418
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
    }
}