AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/PluginCheckResult.cs

8 lines
372 B
C#
Raw Normal View History

2025-03-22 20:12:14 +00:00
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);