namespace AIStudio.Tools.PluginSystem;
///
/// Represents the result of a plugin check.
///
/// In case the plugin is forbidden, this is true.
/// The message that describes why the plugin is forbidden.
public readonly record struct PluginCheckResult(bool IsForbidden, string? Message);