oms-Organization/Models/SettingsEnum.php
2024-03-20 07:21:23 +00:00

35 lines
712 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Organization\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Organization\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Module settings enum.
*
* @package Modules\Organization\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
abstract class SettingsEnum extends Enum
{
public const GROUP_GENERATE_AUTOMATICALLY_UNIT = '1004700001';
public const GROUP_GENERATE_AUTOMATICALLY_DEPARTMENT = '1004700002';
public const GROUP_GENERATE_AUTOMATICALLY_POSITION = '1004700003';
}