namespace MediaBrowser.Model.SyncPlay { /// /// Enum GroupRequestType. /// public enum GroupRequestType { /// /// A user is requesting to create a new group. /// NewGroup = 0, /// /// A user is requesting to join a group. /// JoinGroup = 1, /// /// A user is requesting to leave a group. /// LeaveGroup = 2, /// /// A user is requesting the list of available groups. /// ListGroups = 3, /// /// A user is sending a playback command to a group. /// Playback = 4 } }