mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
namespace Modules\MLMDownline\Entities;
|
|
|
|
use Modules\RolePermission\Entities\Permission;
|
|
|
|
class MLMPermission extends Permission
|
|
{
|
|
protected $table = 'permissions';
|
|
|
|
protected $guarded = [];
|
|
}
|