Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }