Files
symfony_example_app/src/Entity/DTO/QRCode/QRCodeMoney.php
2024-01-18 16:41:03 +01:00

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) { }
}