mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
13 lines
284 B
C#
13 lines
284 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts;
|
|
|
|
public class RegenerateTwoFactorRequestModel
|
|
{
|
|
[Required]
|
|
public string MasterPasswordHash { get; set; }
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Token { get; set; }
|
|
}
|