oms-AssetManagement/Models/PermissionCategory.php
Dennis Eichhorn ac8eb803e5
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled
fix permissions
2025-04-02 14:15:04 +00:00

37 lines
657 B
PHP

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\AssetManagement\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.2
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\AssetManagement\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Permission category enum.
*
* @package Modules\AssetManagement\Models
* @license OMS License 2.2
* @link https://jingga.app
* @since 1.0.0
*/
abstract class PermissionCategory extends Enum
{
public const ASSET = 1;
public const ASSET_TYPE = 3;
public const ASSET_ATTRIBUTE_TYPE = 6;
public const ASSET_NOTE = 7;
}