Files
server/src/Api/Models/Request/Organizations/OrganizationUserResetPasswordRequestModel.cs

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

13 lines
301 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2021-12-14 15:05:07 +00:00
namespace Bit.Api.Models.Request.Organizations;
2022-08-29 16:06:55 -04:00
2021-12-14 15:05:07 +00:00
public class OrganizationUserResetPasswordRequestModel
{
[Required]
[StringLength(300)]
public string NewMasterPasswordHash { get; set; }
[Required]
public string Key { get; set; }
}