mirror of
https://github.com/bitwarden/server
synced 2026-01-02 00:23:40 +00:00
10 lines
266 B
C#
10 lines
266 B
C#
using Bit.Api.Auth.Models.Request.Accounts;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Api.AdminConsole.Models.Request.Organizations;
|
|
|
|
public class OrganizationApiKeyRequestModel : SecretVerificationRequestModel
|
|
{
|
|
public OrganizationApiKeyType Type { get; set; }
|
|
}
|