mirror of
https://github.com/bitwarden/server.git
synced 2026-02-09 10:23:10 +08: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);
|
|
}
|