namespace AIStudio.Tools.PluginSystem; /// /// Represents the state of a plugin. /// /// True, when the plugin is valid. /// When the plugin is invalid, this contains the error message. public readonly record struct PluginState(bool Valid, string Message);