mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-20 15:58:41 +00:00
27 lines
410 B
PHP
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 = [];
|
|
}
|