mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 15:45:19 +08:00
11 lines
328 B
C#
11 lines
328 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Repositories
|
|
{
|
|
public interface IOrganizationApiKeyRepository : IRepository<OrganizationApiKey, Guid>
|
|
{
|
|
Task<IEnumerable<OrganizationApiKey>> GetManyByOrganizationIdTypeAsync(Guid organizationId, OrganizationApiKeyType? type = null);
|
|
}
|
|
}
|