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

AccountTypeDTO.php 224B

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