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.

AccountTransactionDTO.php 403B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO;
  3. use App\Enums\Accounting\TransactionType;
  4. class AccountTransactionDTO
  5. {
  6. public function __construct(
  7. public ?int $id,
  8. public string $date,
  9. public string $description,
  10. public string $debit,
  11. public string $credit,
  12. public string $balance,
  13. public ?TransactionType $type,
  14. public ?string $tableAction,
  15. ) {}
  16. }