mirror of
https://github.com/Karaka-Management/oms-AssetManagement.git
synced 2026-01-11 14:48:40 +00:00
39 lines
666 B
PHP
39 lines
666 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;
|
|
|
|
/**
|
|
* Asset status enum.
|
|
*
|
|
* @package Modules\AssetManagement\Models
|
|
* @license OMS License 2.2
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class AssetStatus extends Enum
|
|
{
|
|
public const ACTIVE = 1;
|
|
|
|
public const INACTIVE = 2;
|
|
|
|
public const DAMAGED = 3;
|
|
|
|
public const OUT_OF_ORDER = 4;
|
|
|
|
public const MAINTENANCE = 5;
|
|
}
|