mirror of
https://github.com/bitwarden/server
synced 2025-12-18 01:03:17 +00:00
11 lines
303 B
C#
11 lines
303 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Api.Models.Request.Organizations;
|
|
|
|
namespace Bit.Api.Models.Request.Accounts;
|
|
|
|
public class UpdateTempPasswordRequestModel : OrganizationUserResetPasswordRequestModel
|
|
{
|
|
[StringLength(50)]
|
|
public string MasterPasswordHint { get; set; }
|
|
}
|