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