package com.iplatform.gather.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
@ConfigurationProperties(prefix = "iplatform.gather")
|
public class GatherProperties {
|
|
private Boolean enabled = Boolean.FALSE;
|
|
public Boolean getEnabled() {
|
return enabled;
|
}
|
|
public void setEnabled(Boolean enabled) {
|
this.enabled = enabled;
|
}
|
}
|