package com.iplatform.chat.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
@ConfigurationProperties(prefix = "iplatform.chat")
|
public class ChatProperties {
|
|
public String getRobotClass() {
|
return robotClass;
|
}
|
|
public void setRobotClass(String robotClass) {
|
this.robotClass = robotClass;
|
}
|
|
public boolean isRobotEnabled() {
|
return robotEnabled;
|
}
|
|
public void setRobotEnabled(boolean robotEnabled) {
|
this.robotEnabled = robotEnabled;
|
}
|
|
private String robotClass;
|
private boolean robotEnabled = false;
|
}
|