oms-LoanManagement/Models/LoanStatus.php
Dennis Eichhorn 7707a72946 ui fixes
2024-04-07 17:31:42 +00:00

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;
}