mirror of
https://github.com/bitwarden/server
synced 2025-12-14 15:23:42 +00:00
10 lines
245 B
C#
10 lines
245 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request;
|
|
|
|
public class BulkDenyAdminAuthRequestRequestModel
|
|
{
|
|
public IEnumerable<Guid> Ids { get; set; }
|
|
}
|