mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
11 lines
210 B
C#
11 lines
210 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class CipherPurgeRequestModel
|
|
{
|
|
[Required]
|
|
public string MasterPasswordHash { get; set; }
|
|
}
|
|
}
|