mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-05-03 09:39:47 +00:00
8 lines
336 B
C#
8 lines
336 B
C#
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); |