Interface for tool UI info. Declares Name and Description properties and provides default implementations for PrimaryAction, SecondaryAction, and ReloadAction returning null. Inherits IValid.
namespace Sandbox;
public interface IToolInfo : IValid
{
string Name { get; }
string Description { get; }
string PrimaryAction => null;
string SecondaryAction => null;
string ReloadAction => null;
}