symfony_example_app/src/Entity/DTO/QRCode/QRCodePaymentIdentification.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) { }
}