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