From 6f772e78b5f0b700474493c77e0ce54e25b8d97a Mon Sep 17 00:00:00 2001
From: Thorsten Sommer <mail@tsommer.org>
Date: Sat, 15 Mar 2025 21:36:48 +0100
Subject: [PATCH] Removed plugin state

---
 app/MindWork AI Studio/Tools/PluginSystem/PluginState.cs | 8 --------
 1 file changed, 8 deletions(-)
 delete mode 100644 app/MindWork AI Studio/Tools/PluginSystem/PluginState.cs

diff --git a/app/MindWork AI Studio/Tools/PluginSystem/PluginState.cs b/app/MindWork AI Studio/Tools/PluginSystem/PluginState.cs
deleted file mode 100644
index 60b11790..00000000
--- a/app/MindWork AI Studio/Tools/PluginSystem/PluginState.cs	
+++ /dev/null
@@ -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);
\ No newline at end of file