Files
server/src/Api/Models/Request/Accounts/UpdateTempPasswordRequestModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
303 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2021-12-14 15:05:07 +00:00
using Bit.Api.Models.Request.Organizations;
2021-12-14 15:05:07 +00:00
namespace Bit.Api.Models.Request.Accounts;
2022-08-29 14:53:16 -04:00
2021-12-14 15:05:07 +00:00
public class UpdateTempPasswordRequestModel : OrganizationUserResetPasswordRequestModel
{
[StringLength(50)]
public string MasterPasswordHint { get; set; }
}