mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
14 lines
401 B
C#
14 lines
401 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Api.Models.Request.Organizations;
|
|
|
|
namespace Bit.Api.Auth.Models.Request.Accounts;
|
|
|
|
public class UpdateTempPasswordRequestModel : OrganizationUserResetPasswordRequestModel
|
|
{
|
|
[StringLength(50)]
|
|
public string MasterPasswordHint { get; set; }
|
|
}
|