mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
22 lines
439 B
Python
22 lines
439 B
Python
from enum import Enum
|
|
|
|
|
|
class Provider(Enum):
|
|
"""Store Enum Types of the Providers"""
|
|
Spotify = "Spotify"
|
|
Spotify_Playlist = "Spotify Playlist"
|
|
YouTube = "YouTube"
|
|
Name = 'Track Name'
|
|
Unknown = "Unknown"
|
|
|
|
|
|
class Playlist_Types(Enum):
|
|
Spotify_Playlist = "Spotify Playlist"
|
|
YouTube_Playlist = "YouTube Playlist"
|
|
Unknown = "Unknown"
|
|
|
|
|
|
class Origins(Enum):
|
|
Default = "Default"
|
|
Playlist = "Playlist"
|