GroupUpdateType.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Enum GroupUpdateType.
  5. /// </summary>
  6. public enum GroupUpdateType
  7. {
  8. /// <summary>
  9. /// The user-joined update. Tells members of a group about a new user.
  10. /// </summary>
  11. UserJoined,
  12. /// <summary>
  13. /// The user-left update. Tells members of a group that a user left.
  14. /// </summary>
  15. UserLeft,
  16. /// <summary>
  17. /// The group-joined update. Tells a user that the group has been joined.
  18. /// </summary>
  19. GroupJoined,
  20. /// <summary>
  21. /// The group-left update. Tells a user that the group has been left.
  22. /// </summary>
  23. GroupLeft,
  24. /// <summary>
  25. /// The group-state update. Tells members of the group that the state changed.
  26. /// </summary>
  27. StateUpdate,
  28. /// <summary>
  29. /// The play-queue update. Tells a user the playing queue of the group.
  30. /// </summary>
  31. PlayQueue,
  32. /// <summary>
  33. /// The not-in-group error. Tells a user that they don't belong to a group.
  34. /// </summary>
  35. NotInGroup,
  36. /// <summary>
  37. /// The group-does-not-exist error. Sent when trying to join a non-existing group.
  38. /// </summary>
  39. GroupDoesNotExist,
  40. /// <summary>
  41. /// The library-access-denied error. Sent when a user tries to join a group without required access to the library.
  42. /// </summary>
  43. LibraryAccessDenied
  44. }
  45. }