mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
13 lines
388 B
C#
13 lines
388 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface ICollectionService
|
|
{
|
|
Task SaveAsync(Collection collection, IEnumerable<SelectionReadOnly> groups = null, Guid? assignUserId = null);
|
|
Task DeleteAsync(Collection collection);
|
|
Task DeleteUserAsync(Collection collection, Guid organizationUserId);
|
|
}
|
|
}
|