mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05:00
14 lines
378 B
C#
14 lines
378 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
|
|
|
|
public interface IAcceptUserCommand
|
|
{
|
|
Task<OrganizationUser> AcceptAsync(Guid organizationUserId, User user, string token);
|
|
|
|
Task<OrganizationUser> AcceptAsync(string orgIdentifier, User user);
|
|
|
|
Task<OrganizationUser> AcceptAsync(Guid organizationId, User user);
|
|
}
|
|
|