mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-01-11 07:38:40 +00:00
39 lines
661 B
PHP
Executable File
39 lines
661 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\ProjectManagement\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\ProjectManagement\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Progress type enum.
|
|
*
|
|
* @package Modules\ProjectManagement\Models
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class ProgressType extends Enum
|
|
{
|
|
public const MANUAL = 0;
|
|
|
|
public const LINEAR = 1;
|
|
|
|
public const EXPONENTIAL = 2;
|
|
|
|
public const LOG = 3;
|
|
|
|
public const TASKS = 4;
|
|
}
|