using Bit.Core.Entities; namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces; public interface IAcceptUserCommand { Task AcceptAsync(Guid organizationUserId, User user, string token); Task AcceptAsync(string orgIdentifier, User user); Task AcceptAsync(Guid organizationId, User user); }