Added the theme plugin type

This commit is contained in:
Thorsten Sommer 2025-03-15 21:35:21 +01:00
parent 4d79b0ec94
commit ee5237ac44
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 2 additions and 0 deletions

View File

@ -7,4 +7,5 @@ public enum PluginType
LANGUAGE,
ASSISTANT,
CONFIGURATION,
THEME,
}

View File

@ -7,6 +7,7 @@ public static class PluginTypeExtensions
PluginType.LANGUAGE => "Language plugin",
PluginType.ASSISTANT => "Assistant plugin",
PluginType.CONFIGURATION => "Configuration plugin",
PluginType.THEME => "Theme plugin",
_ => "Unknown plugin type",
};