oms-InvestmentManagement/Models/InvestmentObject.php
2023-05-24 18:11:37 +00:00

28 lines
431 B
PHP

<?php
use phpOMS\Business\Finance\DepreciationType;
class InvestmentObject
{
public int $id = 0;
public string $productName = '';
public string $description = '';
public int $supplier = 0;
public string $supplierName = '';
public string $productLink = '';
/**
* Costs / Revenue
*/
public array $money = [];
public bool $approved = false;
public array $attributes = [];
}