20 lines
420 B
PHP
20 lines
420 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\BusProNet\Model;
|
|
|
|
/**
|
|
* Represents a bank account with payment information.
|
|
*
|
|
* This class handles bank account data including IBAN, BIC, bank name,
|
|
* and account holder information for payment processing.
|
|
*/
|
|
class BankAccount
|
|
{
|
|
public ?string $iban = null;
|
|
public ?string $bic = null;
|
|
public ?string $bankName = null;
|
|
public ?string $holder = null;
|
|
}
|