mirror of
https://github.com/bitwarden/server
synced 2025-12-20 10:13:39 +00:00
SM-281: Secrets Manager Trash (#2688)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Bit.Core.SecretsManager.Commands.Trash.Interfaces;
|
||||
|
||||
public interface IEmptyTrashCommand
|
||||
{
|
||||
Task EmptyTrash(Guid organizationId, List<Guid> ids);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace Bit.Core.SecretsManager.Commands.Trash.Interfaces;
|
||||
|
||||
public interface IRestoreTrashCommand
|
||||
{
|
||||
Task RestoreTrash(Guid organizationId, List<Guid> ids);
|
||||
}
|
||||
Reference in New Issue
Block a user