mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
bulk action apis for delete and move
This commit is contained in:
@ -89,4 +89,18 @@ namespace Bit.Core.Models.Api
|
||||
[Required]
|
||||
public IEnumerable<string> CollectionIds { get; set; }
|
||||
}
|
||||
|
||||
public class CipherBulkDeleteRequestModel
|
||||
{
|
||||
[Required]
|
||||
public IEnumerable<string> Ids { get; set; }
|
||||
}
|
||||
|
||||
public class CipherBulkMoveRequestModel
|
||||
{
|
||||
[Required]
|
||||
public IEnumerable<string> Ids { get; set; }
|
||||
[Required]
|
||||
public string FolderId { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user