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

13 lines
267 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 System;
namespace Bit.Core.Services
{
public interface IGroupService
{
Task SaveAsync(Group group, IEnumerable<Guid> collectionIds = null);
}
}