Removed plugin state

This commit is contained in:
Thorsten Sommer 2025-03-15 21:36:48 +01:00
parent ee5237ac44
commit 6f772e78b5
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -1,8 +0,0 @@
namespace AIStudio.Tools.PluginSystem;
/// <summary>
/// Represents the state of a plugin.
/// </summary>
/// <param name="Valid">True, when the plugin is valid.</param>
/// <param name="Message">When the plugin is invalid, this contains the error message.</param>
public readonly record struct PluginState(bool Valid, string Message);