mirror of
https://github.com/bitwarden/server.git
synced 2025-07-14 14:17:35 -05:00
16 lines
395 B
C#
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; }
|
|
}
|