Class VerifyEmailRequest
- Namespace
- Builvero.Application.DTOs.Auth
- Assembly
- Builvero.Application.dll
Request model for verifying an email address with a verification code.
public class VerifyEmailRequest
- Inheritance
-
VerifyEmailRequest
- Inherited Members
Remarks
This DTO is used by the email verification endpoint to verify email addresses using a code that was sent to the user's email address.
Properties
Code
Gets or sets the verification code that was sent to the email address.
public string Code { get; set; }
Property Value
- string
- Request model for verifying an email address with a verification code.
Gets or sets the email address to verify.
public string Email { get; set; }
Property Value
- string
- Request model for verifying an email address with a verification code.