12 lines
184 B
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)
|
|
{
|
|
}
|
|
}
|