LoadDll/加载dll/PluginBase.cs
2023-02-28 12:23:33 +08:00

17 lines
291 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PluginBase
{
public interface ICommand
{
string { get; }//Name
string { get; }//Description
int ();
}
}