Class CompleteResetPasswordRequestDto
Request DTO for completing a password reset flow.
public sealed class CompleteResetPasswordRequestDto
- Inheritance
-
CompleteResetPasswordRequestDto
- Inherited Members
Properties
User.Email
[Required]
[EmailAddress]
public string Email { get; set; }
Property Value
NewPasswordHashSHA256
SHA-256 hash of the user's desired new password, hex-encoded into a 64-character all-lowercase string.
[Required]
public string NewPasswordHashSHA256 { get; set; }
Property Value
Totp
Valid TOTP for authorizing the request. The requesting GastroSky.Models.DTO.User should have received this via email.
[Required]
public string Totp { get; set; }