17 lines
470 B
C#
17 lines
470 B
C#
|
|
namespace MotoresArgentinosV2.Core.DTOs;
|
||
|
|
|
||
|
|
public class InitiateEmailChangeRequest
|
||
|
|
{
|
||
|
|
public string NewEmail { get; set; } = string.Empty;
|
||
|
|
public string MfaCode { get; set; } = string.Empty; // Código de Google Authenticator
|
||
|
|
}
|
||
|
|
|
||
|
|
public class ConfirmEmailChangeRequest
|
||
|
|
{
|
||
|
|
public string Token { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
|
||
|
|
public class ConfirmSecurityActionRequest
|
||
|
|
{
|
||
|
|
public string Token { get; set; } = string.Empty; // Código numérico enviado por mail
|
||
|
|
}
|