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

16 lines
220 B
PHP

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