Files
netslim-core/src/Identity/Application/Command/ChangePasswordCommand.php
2026-03-20 22:13:41 +01:00

18 lines
334 B
PHP

<?php
declare(strict_types=1);
namespace Netig\Netslim\Identity\Application\Command;
/**
* DTO d'entrée du use case ChangePassword.
*/
final readonly class ChangePasswordCommand
{
public function __construct(
public int $userId,
public string $currentPassword,
public string $newPassword,
) {}
}