io.github.zhyshko.core.configuration.ConfigProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotIO Show documentation
Show all versions of BotIO Show documentation
A framework for easy Telegram Bot creation
The newest version!
package io.github.zhyshko.core.configuration;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.List;
@ConfigurationProperties(prefix = "botio")
@Data
@AllArgsConstructor
@NoArgsConstructor
public class ConfigProperties {
private String botToken;
private List filters;
private boolean i18nEnabled;
private boolean multiThreadedUpdateConsumerEnabled;
private boolean perUserRequestLockingEnabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy