mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
10 lines
107 B
PHP
10 lines
107 B
PHP
<?php
|
|
|
|
namespace App\Enums\SeedBoxRecord;
|
|
|
|
enum IsAllowedEnum: int {
|
|
case YES = 1;
|
|
|
|
case NO = 0;
|
|
}
|