<?php
namespace app\ht\exts\rbac;
use yii\base\Object;
/**
* @author Nemo Luo <378107001@qq,com>
* @since 2.0
*/
class Perm extends Object
{
/**
* @var string the name of the item. This must be globally unique.
*/
public $permId;
/**
* @var string the perm name
*/
public $name;
/**
* @var array the perm routes
*/
public $routes = [];
}