mirror of
https://github.com/bitwarden/server.git
synced 2025-04-29 16:52:16 -05:00
12 lines
305 B
C#
12 lines
305 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IGroupService
|
|
{
|
|
Task SaveAsync(Group group, IEnumerable<SelectionReadOnly> collections = null);
|
|
Task DeleteAsync(Group group);
|
|
Task DeleteUserAsync(Group group, Guid organizationUserId);
|
|
}
|