mirror of
https://github.com/bitwarden/server
synced 2025-12-25 12:43:14 +00:00
13 lines
297 B
C#
13 lines
297 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts;
|
|
|
|
public class EmailTokenRequestModel : SecretVerificationRequestModel
|
|
{
|
|
[Required]
|
|
[StrictEmailAddress]
|
|
[StringLength(256)]
|
|
public string NewEmail { get; set; }
|
|
}
|