mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-22 08:48:41 +00:00
25 lines
433 B
PHP
25 lines
433 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use phpOMS\Business\Finance\DepreciationType;
|
|
use phpOMS\Stdlib\Base\FloatInt;
|
|
|
|
class Money
|
|
{
|
|
public int $id = 0;
|
|
|
|
public string $name = '';
|
|
|
|
public int $depreciationType = DepreciationType::STAIGHT_LINE;
|
|
|
|
public int $depreciationDuration = 0;
|
|
|
|
public FloatInt $amount;
|
|
|
|
public FloatInt $residualValue;
|
|
|
|
public MoneyType $moneyType;
|
|
|
|
public bool $recurring = false;
|
|
}
|