oms-InvestmentManagement/Models/InvestmentObject.php
2023-05-28 12:38:27 +00:00

27 lines
410 B
PHP

<?php
declare(strict_types=1);
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 = [];
}