10 lines
181 B
PHP
10 lines
181 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\DTO\QRCode;
|
|
|
|
readonly class QRCodeMoney
|
|
{
|
|
public function __construct(public string $amount, public string $currency) { }
|
|
}
|