10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Remote\Usetreno;
|
|
|
|
readonly class AuthRequest
|
|
{
|
|
public function __construct(public string $username, public string $password) {}
|
|
}
|