using Bit.Core.Entities; namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces; public interface IUpdateOrganizationUserGroupsCommand { Task UpdateUserGroupsAsync(OrganizationUser organizationUser, IEnumerable groupIds, Guid? loggedInUserId); }