16 lines
229 B
PHP
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,
|
|
) {
|
|
}
|
|
}
|