AutoMod/src/struct/ServerConfig.ts

12 lines
304 B
TypeScript
Raw Normal View History

2021-10-10 15:33:21 +02:00
import AutomodSettings from "./antispam/AutomodSettings";
2021-10-09 22:20:06 +02:00
class ServerConfig {
id: string | undefined;
prefix: string | undefined;
spaceAfterPrefix: boolean | undefined;
2021-10-10 15:33:21 +02:00
automodSettings: AutomodSettings | undefined;
botManagers: string[] | undefined;
2021-10-09 22:20:06 +02:00
}
export default ServerConfig;