1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

Added account delete.

This commit is contained in:
Kyle Spearrin
2015-12-27 00:14:56 -05:00
parent 8d7178bc74
commit 55be0c739e
8 changed files with 166 additions and 10 deletions

View File

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