mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 09:23:10 +08:00
13 lines
362 B
C#
13 lines
362 B
C#
|
|
using System;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using Bit.Core.Entities;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationApiKeys.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IGetOrganizationApiKeyCommand
|
|||
|
|
{
|
|||
|
|
Task<OrganizationApiKey> GetOrganizationApiKeyAsync(Guid organizationId, OrganizationApiKeyType organizationApiKeyType);
|
|||
|
|
}
|
|||
|
|
}
|