spacebar/src/connections/Spotify/SpotifySettings.ts
2023-03-18 19:26:15 -04:00

6 lines
130 B
TypeScript

export class SpotifySettings {
enabled: boolean = false;
clientId: string | null = null;
clientSecret: string | null = null;
}