diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-12-04 20:22:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-04 20:22:30 -0500 |
| commit | bba01bf7b9f63e0e19c133bed201db29fa60a833 (patch) | |
| tree | f5cad92410ed1809dff3feeb82be5df08f2a4705 /MediaBrowser.Model/SyncPlay/SendCommandType.cs | |
| parent | b96d4ef0e8ffa8429c25c83739a9c392a12e9d82 (diff) | |
| parent | cc64ee483d6620319d148ad27dbd1e26d8195ea6 (diff) | |
Merge pull request #3194 from OancaAndrei/syncplay-enhanced
SyncPlay for TV series (and Music)
Diffstat (limited to 'MediaBrowser.Model/SyncPlay/SendCommandType.cs')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/SendCommandType.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/MediaBrowser.Model/SyncPlay/SendCommandType.cs b/MediaBrowser.Model/SyncPlay/SendCommandType.cs index 86dec9e90..e6b17c60a 100644 --- a/MediaBrowser.Model/SyncPlay/SendCommandType.cs +++ b/MediaBrowser.Model/SyncPlay/SendCommandType.cs @@ -6,9 +6,9 @@ namespace MediaBrowser.Model.SyncPlay public enum SendCommandType { /// <summary> - /// The play command. Instructs users to start playback. + /// The unpause command. Instructs users to unpause playback. /// </summary> - Play = 0, + Unpause = 0, /// <summary> /// The pause command. Instructs users to pause playback. @@ -16,8 +16,13 @@ namespace MediaBrowser.Model.SyncPlay Pause = 1, /// <summary> + /// The stop command. Instructs users to stop playback. + /// </summary> + Stop = 2, + + /// <summary> /// The seek command. Instructs users to seek to a specified time. /// </summary> - Seek = 2 + Seek = 3 } } |
