mirror of
https://github.com/bitwarden/server
synced 2025-12-23 03:33:35 +00:00
11 lines
207 B
C#
11 lines
207 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
public class SecurityStampRequestModel
|
|
{
|
|
[Required]
|
|
public string MasterPasswordHash { get; set; }
|
|
}
|
|
}
|