mirror of
https://github.com/bitwarden/server.git
synced 2026-02-06 17:13:10 +08:00
13 lines
308 B
C#
13 lines
308 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
}
|