summary refs log tree commit diff
path: root/src/connections/Discord/DiscordSettings.ts
blob: 3751b041ce8ef20cc34907c3f72041876d338f94 (plain) (blame)
1
2
3
4
5
export class DiscordSettings {
	enabled: boolean = false;
	clientId: string | null = null;
	clientSecret: string | null = null;
}