mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 07:33:11 +08:00
* Enable Nullable In Unowned Repos * Update More Tests * Move to One If * Fix Collections * Format * Add Migrations * Move Pragma Annotation * Add Better Assert Message
12 lines
328 B
C#
12 lines
328 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
|
|
#nullable enable
|
|
|
|
namespace Bit.Core.Repositories;
|
|
|
|
public interface IOrganizationApiKeyRepository : IRepository<OrganizationApiKey, Guid>
|
|
{
|
|
Task<IEnumerable<OrganizationApiKey>> GetManyByOrganizationIdTypeAsync(Guid organizationId, OrganizationApiKeyType? type = null);
|
|
}
|