mirror of
https://github.com/bitwarden/server.git
synced 2025-05-11 06:32:22 -05:00
10 lines
310 B
C#
10 lines
310 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);
|
|
}
|