net.sixpointsix.springboot.datafixture.DataFixtureProperties Maven / Gradle / Ivy
package net.sixpointsix.springboot.datafixture;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "6point6.data-fixture")
public class DataFixtureProperties {
private boolean enabled;
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
}