oms-Support/Models/PermissionState.php
2020-11-10 22:14:56 +01:00

39 lines
676 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Support\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Support\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Permision state enum.
*
* @package Modules\Support\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
abstract class PermissionState extends Enum
{
public const TICKET = 1;
public const ELEMENT = 2;
public const ANALYSIS = 3;
public const SETTINGS = 4;
public const DASHBOARD = 5;
}