mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 00:23:24 +08: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; }
|
|
}
|