mirror of
https://github.com/bitwarden/server
synced 2025-12-10 05:13:48 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
public class RecoverTwoFactorRequestModel
|
|
{
|
|
[Required]
|
|
public string MasterPasswordHash { get; set; }
|
|
[Required]
|
|
[StringLength(32)]
|
|
public string RecoveryCode { get; set; }
|
|
}
|
|
}
|