miniSql

vs2019汉化99%
zgc123@gmail.com authored at 11/28/2023 4:10:34 PM zgc123@gmail.com committed at 11/28/2023 4:10:51 PM
393.00 B
Loader.cs
using MiniSqlQuery.Core;

namespace MiniSqlQuery.Exports.Plugin
{
    public class Loader : PluginLoaderBase
    {
        public Loader()
            : base("导出用于MiniSqlQuery", "启用数据导出")
        {
        }

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