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
2017-05-09 14:17:22 -04:00

13 lines
267 B
C#

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