namespace Bit.SeederApi.Commands.Interfaces;
///
/// Command for destroying multiple scenes in parallel.
///
public interface IDestroyBatchScenesCommand
{
///
/// Destroys multiple scenes by their play IDs in parallel.
///
/// The list of play IDs to destroy
/// Thrown when one or more scenes fail to destroy
Task DestroyAsync(IEnumerable playIds);
}