17 lines
291 B
C#
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 执行();
|
|
}
|
|
}
|