We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75ebd21 commit e2451c1Copy full SHA for e2451c1
music_assistant_models/player.py
@@ -58,6 +58,12 @@ class PlayerSource(DataClassDictMixin):
58
name: str
59
# passive: this source can not be selected/activated by MA/the user
60
passive: bool = False
61
+ # can_play_pause: this source can be paused and resumed
62
+ can_play_pause: bool = False
63
+ # can_seek: this source can be seeked
64
+ can_seek: bool = False
65
+ # can_next_previous: this source can be skipped to next/previous item
66
+ can_next_previous: bool = False
67
68
69
@dataclass
0 commit comments