namespace MediaBrowser.Model.Syncplay { /// /// Enum SyncplayGroupUpdateType /// public enum SyncplayGroupUpdateType { /// /// The user-joined update. Tells members of a group about a new user. /// UserJoined = 0, /// /// The user-left update. Tells members of a group that a user left. /// UserLeft = 1, /// /// The group-joined update. Tells a user that the group has been joined. /// GroupJoined = 2, /// /// The group-left update. Tells a user that the group has been left. /// GroupLeft = 3, /// /// The group-wait update. Tells members of the group that a user is buffering. /// GroupWait = 4, /// /// The prepare-session update. Tells a user to load some content. /// PrepareSession = 5, /// /// The keep-alive update. An update to keep alive the socket. /// KeepAlive = 6, /// /// The not-in-group update. Tells a user that no group has been joined. /// NotInGroup = 7 } }