1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00

create/get/update collection with groups

This commit is contained in:
Kyle Spearrin
2017-05-09 12:41:36 -04:00
parent d166f9cca3
commit 6c923102e9
11 changed files with 196 additions and 6 deletions

View File

@@ -1,10 +1,12 @@
using System.Threading.Tasks;
using Bit.Core.Models.Table;
using System.Collections.Generic;
using System;
namespace Bit.Core.Services
{
public interface ICollectionService
{
Task SaveAsync(Collection collection);
Task SaveAsync(Collection collection, IEnumerable<Guid> groupIds = null);
}
}