1
0
mirror of https://github.com/bitwarden/server synced 2025-12-22 19:23:45 +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

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

View File

@@ -1,6 +0,0 @@
namespace Bit.Api.Auth.Models.Request;
public class BulkDenyAdminAuthRequestRequestModel
{
public IEnumerable<Guid> Ids { get; set; }
}