mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-14 21:04:59 +01:00
62 lines
1.1 KiB
PHP
62 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Commands\User;
|
|
|
|
class AddTeamMemberCommand
|
|
{
|
|
/**
|
|
* The user username.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $username;
|
|
|
|
/**
|
|
* The user password.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $password;
|
|
|
|
/**
|
|
* The user email.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $email;
|
|
|
|
/**
|
|
* The user level.
|
|
*
|
|
* @var int
|
|
*/
|
|
public $level;
|
|
|
|
/**
|
|
* Create a new add team member command instance.
|
|
*
|
|
* @param string $username
|
|
* @param string $password
|
|
* @param string $email
|
|
* @param int $level
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($username, $password, $email, $level)
|
|
{
|
|
$this->username = $username;
|
|
$this->password = $password;
|
|
$this->email = $email;
|
|
$this->level = $level;
|
|
}
|
|
}
|