mirror of
https://github.com/Karaka-Management/oms-Workflow.git
synced 2026-01-11 14:58:39 +00:00
33 lines
657 B
PHP
Executable File
33 lines
657 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Workflow\Templates\Permission
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Workflow\Templates\Permission;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Task status enum.
|
|
*
|
|
* @package Modules\Workflow\Templates\Permission
|
|
* @license OMS License 1.0
|
|
* @link https://orange-management.org
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PermissionStatus extends Enum
|
|
{
|
|
public const PENDING = 1;
|
|
public const APPROVED = 2;
|
|
public const DISMISSED = 3;
|
|
}
|