initial commit
This commit is contained in:
18
app/Data/Intent/Contact/UpdateContactIntent.php
Normal file
18
app/Data/Intent/Contact/UpdateContactIntent.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user