namespace Bit.SeederApi.Commands.Interfaces; /// /// Command for destroying data created by a single scene. /// public interface IDestroySceneCommand { /// /// Destroys data created by a scene using the seeded data ID. /// /// The ID of the seeded data to destroy /// The result of the destroy operation /// Thrown when there's an error destroying the seeded data Task DestroyAsync(string playId); }