2025-07-08 10:25:41 -04:00
|
|
|
|
// FIXME: Update this file to be null safe and then delete the line below
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2021-12-14 15:05:07 +00:00
|
|
|
|
using Bit.Api.Models.Request.Organizations;
|
2021-08-05 13:00:24 -05:00
|
|
|
|
|
2023-04-14 13:25:56 -04:00
|
|
|
|
namespace Bit.Api.Auth.Models.Request.Accounts;
|
2022-08-29 16:06:55 -04:00
|
|
|
|
|
2021-12-14 15:05:07 +00:00
|
|
|
|
public class UpdateTempPasswordRequestModel : OrganizationUserResetPasswordRequestModel
|
2021-07-22 09:20:14 -05:00
|
|
|
|
{
|
2021-08-05 13:00:24 -05:00
|
|
|
|
[StringLength(50)]
|
|
|
|
|
|
public string MasterPasswordHint { get; set; }
|
2021-07-22 09:20:14 -05:00
|
|
|
|
}
|