add password hash to create user dto

This commit is contained in:
Yisroel Baum 2026-04-24 13:18:24 +03:00
parent 261319078d
commit 5093259063
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -8,6 +8,7 @@ class CreateUserDto
{
public function __construct(
public EmailAddress $email,
public string $passwordHash,
public bool $isAdmin = false,
) {}
}