Files
ecomail-pohovor/app/Data/Intent/Contact/SearchContactIntentByUuid.php
2026-02-11 23:37:50 +01:00

16 lines
229 B
PHP

<?php
declare(strict_types=1);
namespace App\Data\Intent\Contact;
use Ramsey\Uuid\UuidInterface;
class SearchContactIntentByUuid
{
public function __construct(
public readonly UuidInterface $uuid,
) {
}
}