12 lines
200 B
PHP
12 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Auth\UseCases\AuthenticateUser;
|
|
|
|
class AuthenticateUserRequest
|
|
{
|
|
public function __construct(
|
|
public ?string $email,
|
|
public ?string $password,
|
|
) {
|
|
}
|
|
}
|