mirror of
https://github.com/bitwarden/server.git
synced 2025-06-26 21:58:48 -05:00

* also remove old CipherService and CollectionService methods only used by old export code
11 lines
351 B
C#
11 lines
351 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface ICollectionService
|
|
{
|
|
Task SaveAsync(Collection collection, IEnumerable<CollectionAccessSelection> groups = null, IEnumerable<CollectionAccessSelection> users = null);
|
|
Task DeleteUserAsync(Collection collection, Guid organizationUserId);
|
|
}
|