20 lines
370 B
PHP
20 lines
370 B
PHP
<?php
|
|
class LoginUser
|
|
{
|
|
protected $username;
|
|
protected $capabilty;
|
|
|
|
public function __construct($username, $capabilty) {
|
|
$this->username = $username;
|
|
$this->capabilty = $capabilty;
|
|
}
|
|
|
|
public function getUsername() {
|
|
return $this->username;
|
|
}
|
|
|
|
public function getCapability() {
|
|
return $this->capabilty;
|
|
}
|
|
}
|