mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 12:47:44 +00:00
11 lines
203 B
Python
11 lines
203 B
Python
from enum import Enum
|
|
|
|
|
|
class State(Enum):
|
|
PLAYING = "playing"
|
|
PAUSED = "paused"
|
|
STOPPED = "stopped"
|
|
|
|
def list():
|
|
return list(map(lambda x: x.value, State._member_map_.values()))
|