cn.authing.sdk.java.dto.GetEmailTemplatesDataDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import cn.authing.sdk.java.dto.EmailTemplateCategoryDto;
import cn.authing.sdk.java.dto.EmailTemplateDto;
public class GetEmailTemplatesDataDto {
/**
* 模版列表
*/
@JsonProperty("templates")
private List templates;
/**
* 模版类型列表
*/
@JsonProperty("categories")
private List categories;
public List getTemplates() {
return templates;
}
public void setTemplates(List templates) {
this.templates = templates;
}
public List getCategories() {
return categories;
}
public void setCategories(List categories) {
this.categories = categories;
}
}