1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-29 16:52:16 -05:00
bitwarden/src/Core/Services/IGroupService.cs
2022-08-29 14:53:16 -04:00

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);
}