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