mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
18 lines
686 B
Dart
18 lines
686 B
Dart
abstract class LocalStorageKeys {
|
|
static String saveTrackLyrics = 'save_track_lyrics';
|
|
static String recommendationMarket = 'recommendation_market';
|
|
static String clientId = 'client_id';
|
|
static String clientSecret = 'client_secret';
|
|
static String accessToken = 'access_token';
|
|
static String refreshToken = 'refresh_token';
|
|
static String expiration = "expiration";
|
|
static String geniusAccessToken = "genius_access_token";
|
|
|
|
static String themeMode = "theme_mode";
|
|
static String nextTrackHotKey = "next_track_hot_key";
|
|
static String prevTrackHotKey = "prev_track_hot_key";
|
|
static String playPauseHotKey = "play_pause_hot_key";
|
|
|
|
static String volume = "volume";
|
|
}
|