mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 13:32:41 +08:00
8 lines
115 B
PHP
8 lines
115 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum PermissionEnum: string {
|
|
case UPLOAD_TO_SPECIAL_SECTION = 'uploadspecial';
|
|
}
|