19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Data\Intent\Contact;
|
|
|
|
use Ramsey\Uuid\UuidInterface;
|
|
|
|
final class UpdateContactIntent
|
|
{
|
|
public function __construct(
|
|
public UuidInterface $uuid,
|
|
public string $email,
|
|
public ?string $firstName,
|
|
public ?string $lastName,
|
|
) {
|
|
}
|
|
}
|