Files
server/src/Core/Repositories/IOrganizationApiKeyRepository.cs
Justin Baur 1e0182008b [PM-2943] Enable Nullable Repositories in Unowned Files (#4549)
* Enable Nullable In Unowned Repos

* Update More Tests

* Move to One If

* Fix Collections

* Format

* Add Migrations

* Move Pragma Annotation

* Add Better Assert Message
2024-07-24 09:48:09 -04:00

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);
}