add authenticate user request
This commit is contained in:
parent
271f28936d
commit
20e4a6ee69
1 changed files with 11 additions and 0 deletions
11
app/User/UseCases/AuthenticateUserRequest.php
Normal file
11
app/User/UseCases/AuthenticateUserRequest.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
namespace App\User\UseCases;
|
||||
|
||||
class AuthenticateUserRequest
|
||||
{
|
||||
public function __construct(
|
||||
public ?string $email,
|
||||
public ?string $password,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue