1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-12 15:26:48 +01:00
bitwarden-server/src/Core/Services/IGroupService.cs

14 lines
331 B
C#
Raw Normal View History

2017-05-09 20:17:22 +02:00
using System.Threading.Tasks;
using Bit.Core.Models.Table;
using System.Collections.Generic;
using Bit.Core.Models.Data;
2017-05-09 20:17:22 +02:00
namespace Bit.Core.Services
{
public interface IGroupService
{
Task SaveAsync(Group group, IEnumerable<SelectionReadOnly> collections = null);
Task DeleteAsync(Group group);
2017-05-09 20:17:22 +02:00
}
}