Make all Plugin classes sealed

Changed all Plugin classes and PluginManager to be sealed, preventing further inheritance. This improves code safety and clarifies the intended usage of these classes.
This commit is contained in:
ema
2026-01-08 01:06:37 +08:00
parent bb621f28d5
commit c64885485d
25 changed files with 25 additions and 25 deletions

View File

@@ -26,7 +26,7 @@ using System.Windows;
namespace QuickLook.Plugin.VideoViewer;
public class Plugin : IViewer
public sealed class Plugin : IViewer
{
private static MediaInfoLib _mediaInfo;