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