mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 13:59:48 +00:00
8 lines
372 B
C#
8 lines
372 B
C#
|
namespace AIStudio.Tools.PluginSystem;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Represents the result of a plugin check.
|
||
|
/// </summary>
|
||
|
/// <param name="IsForbidden">In case the plugin is forbidden, this is true.</param>
|
||
|
/// <param name="Message">The message that describes why the plugin is forbidden.</param>
|
||
|
public readonly record struct PluginCheckResult(bool IsForbidden, string? Message);
|