You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
501 B

package com.community.pocket.entity.vo;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
@ConfigurationProperties(prefix = "email")
public class Common {
private List<EmailType> supportType;
public List<EmailType> getSupportType() {
return supportType;
}
public void setSupportType(List<EmailType> supportType) {
this.supportType = supportType;
}
}