mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
14 lines
406 B
C#
14 lines
406 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|