mirror of
https://github.com/bitwarden/server.git
synced 2026-02-06 17:13:10 +08:00
13 lines
301 B
C#
13 lines
301 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request.Organizations;
|
|
|
|
public class OrganizationUserResetPasswordRequestModel
|
|
{
|
|
[Required]
|
|
[StringLength(300)]
|
|
public string NewMasterPasswordHash { get; set; }
|
|
[Required]
|
|
public string Key { get; set; }
|
|
}
|