mirror of
https://github.com/koel/koel
synced 2024-12-19 00:53:05 +00:00
12 lines
125 B
PHP
12 lines
125 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Enums;
|
||
|
|
||
|
enum LicenseStatus
|
||
|
{
|
||
|
case VALID;
|
||
|
case INVALID;
|
||
|
case NO_LICENSE;
|
||
|
case UNKNOWN;
|
||
|
}
|