mirror of
https://github.com/bitwarden/server
synced 2026-01-01 08:03:23 +00:00
15 lines
509 B
C#
15 lines
509 B
C#
namespace Bit.SeederApi.Commands.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Command for destroying multiple scenes in parallel.
|
|
/// </summary>
|
|
public interface IDestroyBatchScenesCommand
|
|
{
|
|
/// <summary>
|
|
/// Destroys multiple scenes by their play IDs in parallel.
|
|
/// </summary>
|
|
/// <param name="playIds">The list of play IDs to destroy</param>
|
|
/// <exception cref="AggregateException">Thrown when one or more scenes fail to destroy</exception>
|
|
Task DestroyAsync(IEnumerable<string> playIds);
|
|
}
|