From 3c7cde5985a96d2a841419a7fb439cf73cd68fe1 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Thu, 22 Dec 2022 21:55:24 -0500 Subject: Add spotify connection --- src/connections/Spotify/SpotifySettings.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/connections/Spotify/SpotifySettings.ts (limited to 'src/connections/Spotify/SpotifySettings.ts') diff --git a/src/connections/Spotify/SpotifySettings.ts b/src/connections/Spotify/SpotifySettings.ts new file mode 100644 index 00000000..e73c0304 --- /dev/null +++ b/src/connections/Spotify/SpotifySettings.ts @@ -0,0 +1,5 @@ +export class SpotifySettings { + enabled: boolean = false; + clientId: string | null = null; + clientSecret: string | null = null; +} -- cgit 1.5.1