Files
myep/src/BusProNet/Model/BankAccount.php
T
2025-07-14 17:15:15 +02:00

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