mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-20 17:37:23 +08:00
9 lines
154 B
PHP
9 lines
154 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum PermissionEnum: string {
|
|
case UPLOAD_TO_SPECIAL_SECTION = 'uploadspecial';
|
|
case BE_ANONYMOUS = 'beanonymous';
|
|
}
|