Role.php
479 Bytes
<?php
namespace app\ht\exts\rbac;
use yii\base\Object;
/**
* @author Nemo Luo <378107001@qq,com>
* @since 2.0
*/
class Role extends Object
{
/**
* @var string the role id of the role. This must be globally unique.
*/
public $roleId;
/**
* @var string the name of the role
*/
public $name;
/**
* @var string the perm of the role
*/
public $perms;
/**
* @var string the role
*/
public $description;
}