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

16 lines
251 B
PHP

<?php
declare(strict_types=1);
namespace App\Data\Intent\Contact;
final class CreateContactIntent
{
public function __construct(
public string $email,
public ?string $firstName,
public ?string $lastName,
) {
}
}