using System; using System.Collections.Generic; using OpenMetaverse; using OpenMetaverse.Packets; namespace OpenMetaverse.TestClient { public class EmptyLostAndCommand : Command { /// /// TestClient command to download and display a notecard asset /// /// public EmptyLostAndCommand(TestClient testClient) { Name = "emptylostandfound"; Description = "Empty inventory Lost And Found folder"; Category = CommandCategory.Inventory; } /// /// Exectute the command /// /// /// /// public override string Execute(string[] args, UUID fromAgentID) { Client.Inventory.EmptyLostAndFound(); return "Lost And Found Emptied"; } } }