Class LoginRequestDto
DTO for the login POST endpoint.
public sealed class LoginRequestDto
- Inheritance
-
LoginRequestDto
- Inherited Members
Properties
The user's email address.
[Required]
[EmailAddress]
public string Email { get; set; }
Property Value
PasswordHashSHA256
SHA-256 hash of the user's password, hex-encoded into a 64-character all-lowercase string.
[Required]
public string PasswordHashSHA256 { get; set; }
Property Value
Totp
[OPTIONAL] 2FA token.
public string? Totp { get; set; }