Rename Syncplay to SyncPlay

This commit is contained in:
gion
2020-05-06 23:42:53 +02:00
parent 6e22e9222b
commit 8a6ec2fb71
22 changed files with 166 additions and 166 deletions

View File

@@ -0,0 +1,21 @@
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
/// Enum SendCommandType.
/// </summary>
public enum SendCommandType
{
/// <summary>
/// The play command. Instructs users to start playback.
/// </summary>
Play = 0,
/// <summary>
/// The pause command. Instructs users to pause playback.
/// </summary>
Pause = 1,
/// <summary>
/// The seek command. Instructs users to seek to a specified time.
/// </summary>
Seek = 2
}
}