mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00

feat(NewDeviceVerification): Added a resend new device OTP endpoint and method for the IUserService as well as wrote test for new methods for the user service.
13 lines
321 B
C#
13 lines
321 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.Auth.Models.Request.Accounts;
|
|
|
|
public class UnauthenticatedSecretVerificatioRequestModel : SecretVerificationRequestModel
|
|
{
|
|
[Required]
|
|
[StrictEmailAddress]
|
|
[StringLength(256)]
|
|
public string Email { get; set; }
|
|
}
|