mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
16 lines
413 B
C#
16 lines
413 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
using System.Collections.Generic;
|
|
using Bit.Core.Models.Data;
|
|
using System;
|
|
|
|
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);
|
|
}
|
|
}
|