6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
export class DiscordSettings {
|
|
enabled: boolean = false;
|
|
clientId: string | null = null;
|
|
clientSecret: string | null = null;
|
|
}
|