miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
400.00 B
Loader.cs
using MiniSqlQuery.Core;

namespace MiniSqlQuery.Exports.Plugin
{
    public class Loader : PluginLoaderBase
    {
        public Loader()
            : base("Exports for MiniSqlQuery", "Enables exporting of data")
        {
        }

        public override void InitializePlugIn()
        {
            Services.HostWindow.AddPluginCommand<Commands.ShowExportWindowCommand>();
        }
    }
}