symfony_example_app/src/Entity/DTO/QRCode/QRCodeQROptions.php

12 lines
184 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\DTO\QRCode;
readonly class QRCodeQROptions
{
public function __construct(public int $scale, public int $margin)
{
}
}