1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-14 14:17:35 -05:00
Files
bitwarden/src/Api/Auth/Models/Request/Accounts/EmailTokenRequestModel.cs
2025-07-08 10:25:41 -04:00

16 lines
395 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
namespace Bit.Api.Auth.Models.Request.Accounts;
public class EmailTokenRequestModel : SecretVerificationRequestModel
{
[Required]
[StrictEmailAddress]
[StringLength(256)]
public string NewEmail { get; set; }
}