mirror of
https://github.com/bitwarden/server
synced 2025-12-27 13:43:18 +00:00
16 lines
346 B
C#
16 lines
346 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
public class EmailTokenRequestModel
|
|
{
|
|
[Required]
|
|
[EmailAddress]
|
|
[StringLength(50)]
|
|
public string NewEmail { get; set; }
|
|
[Required]
|
|
[StringLength(300)]
|
|
public string MasterPasswordHash { get; set; }
|
|
}
|
|
}
|