mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-31 05:46:35 +08:00
18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VisionEdit.Interface
|
|
{
|
|
public interface ToolBase
|
|
{
|
|
// internal ToolRunStatu runStatu = ToolRunStatu.Not_Run;
|
|
/// <summary>
|
|
/// 工具运行
|
|
/// </summary>
|
|
void Run(string jobName);
|
|
}
|
|
}
|