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:
10
src/Api/Models/Request/Accounts/DeleteAccountRequestModel.cs
Normal file
10
src/Api/Models/Request/Accounts/DeleteAccountRequestModel.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Bit.Api.Models
|
||||
{
|
||||
public class DeleteAccountRequestModel
|
||||
{
|
||||
[Required]
|
||||
public string MasterPasswordHash { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user