10 lines
256 B
PHP
10 lines
256 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Remote\Usetreno\Edge;
|
|
|
|
readonly class EdgeQRCodePaymentIdentification
|
|
{
|
|
public function __construct(public string $variableSymbol, public string $specificSymbol, public string $constantSymbol) { }
|
|
}
|