namespace MediaBrowser.Model.SyncPlay
{
    /// 
    /// Enum RequestType.
    /// 
    public enum RequestType
    {
        /// 
        /// 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
    }
}