1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 23:33:41 +00:00

Move remaining OrganizationAuth files to AC Team code ownership (#3382)

This commit is contained in:
Thomas Rittson
2023-11-02 01:14:40 +10:00
committed by GitHub
parent 34a3d4a4df
commit 1fb5e49a05
4 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
namespace Bit.Api.AdminConsole.Models.Request;
public class AdminAuthRequestUpdateRequestModel
{
[EncryptedString]
public string EncryptedUserKey { get; set; }
[Required]
public bool RequestApproved { get; set; }
}