You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AccountCategoryDTO.php 228B

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