using Bit.Core.Entities; using Bit.Core.Enums; using Bit.Core.Models.Data; namespace Bit.Core.OrganizationFeatures.Groups.Interfaces; public interface IUpdateGroupCommand { Task UpdateGroupAsync(Group group, Organization organization, IEnumerable collections = null); Task UpdateGroupAsync(Group group, Organization organization, EventSystemUser systemUser, IEnumerable collections = null); }