mirror of
https://github.com/Karaka-Management/oms-LoanManagement.git
synced 2026-01-11 17:18:41 +00:00
35 lines
588 B
PHP
Executable File
35 lines
588 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\LoanManagement\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\LoanManagement\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Loan status enum.
|
|
*
|
|
* @package Modules\LoanManagement\Models
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class LoanStatus extends Enum
|
|
{
|
|
public const DRAFT = 1;
|
|
|
|
public const ACTIVE = 2;
|
|
|
|
public const INACTIVE = 3;
|
|
}
|