SendCommandType.cs 550 B

1234567891011121314151617181920212223
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Enum SendCommandType.
  5. /// </summary>
  6. public enum SendCommandType
  7. {
  8. /// <summary>
  9. /// The play command. Instructs users to start playback.
  10. /// </summary>
  11. Play = 0,
  12. /// <summary>
  13. /// The pause command. Instructs users to pause playback.
  14. /// </summary>
  15. Pause = 1,
  16. /// <summary>
  17. /// The seek command. Instructs users to seek to a specified time.
  18. /// </summary>
  19. Seek = 2
  20. }
  21. }