選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

AccountCategoryDTO.php 331B

12345678910111213141516
  1. <?php
  2. namespace App\DTO;
  3. class AccountCategoryDTO
  4. {
  5. /**
  6. * @param AccountDTO[]|null $accounts
  7. * @param AccountTypeDTO[]|null $types
  8. */
  9. public function __construct(
  10. public ?array $accounts = null,
  11. public ?array $types = null,
  12. public ?AccountBalanceDTO $summary = null,
  13. ) {}
  14. }