1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-16 17:15:40 -05:00
bitwarden/src/Core/Services/ICollectionService.cs
2017-12-01 16:00:30 -05:00

14 lines
351 B
C#

using System.Threading.Tasks;
using Bit.Core.Models.Table;
using System.Collections.Generic;
using Bit.Core.Models.Data;
namespace Bit.Core.Services
{
public interface ICollectionService
{
Task SaveAsync(Collection collection, IEnumerable<SelectionReadOnly> groups = null);
Task DeleteAsync(Collection collection);
}
}