mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00: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);
|
|
}
|