mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
12 lines
186 B
PHP
12 lines
186 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Plugins\Core;
|
|
|
|
enum PluginStatus: string
|
|
{
|
|
case INVALID = 'invalid';
|
|
case INACTIVE = 'inactive';
|
|
case ACTIVE = 'active';
|
|
}
|