mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 00:22:50 -05:00
Org API controller and supporting data access
This commit is contained in:
12
src/Core/Repositories/IOrganizationUserRepository.cs
Normal file
12
src/Core/Repositories/IOrganizationUserRepository.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Domains;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface IOrganizationUserRepository : IRepository<OrganizationUser, Guid>
|
||||
{
|
||||
Task<OrganizationUser> GetByIdAsync(Guid id, Guid userId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user