12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Remote\Usetreno\Edge;
|
|
|
|
readonly class EdgeQRCodeQROptions
|
|
{
|
|
public function __construct(public int $scale, public int $margin)
|
|
{
|
|
}
|
|
}
|