mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-25 01:58:41 +00:00
22 lines
406 B
PHP
22 lines
406 B
PHP
<?php
|
|
|
|
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;
|
|
} |