1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

validate master password on purge

This commit is contained in:
Kyle Spearrin
2017-10-25 21:38:54 -04:00
parent a042fd10f1
commit a989a800f7
2 changed files with 30 additions and 3 deletions

View File

@ -0,0 +1,10 @@
using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Models.Api
{
public class CipherPurgeRequestModel
{
[Required]
public string MasterPasswordHash { get; set; }
}
}