10 lines
245 B
PHP
10 lines
245 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\DTO\QRCode;
|
|
|
|
readonly class QRCodePaymentIdentification
|
|
{
|
|
public function __construct(public ?string $variableSymbol, public ?string $specificSymbol, public ?string $constantSymbol) { }
|
|
}
|