mirror of
https://github.com/Karaka-Management/oms-InvestmentManagement.git
synced 2026-01-23 17:18:43 +00:00
17 lines
228 B
PHP
17 lines
228 B
PHP
<?php
|
|
|
|
use phpOMS\Localization\BaseStringL11n;
|
|
|
|
class MoneyType
|
|
{
|
|
public int $id = 0;
|
|
|
|
public string $name = '';
|
|
|
|
public BaseStringL11n $content;
|
|
|
|
public bool $cost = true;
|
|
|
|
public bool $recurring = false;
|
|
}
|