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