using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Client { public interface IRevitCommandExcutor { /// /// 执行Revit命令 /// /// 被执行的Revit命令 /// 执行命令的参数 /// 用到的文件的路径 /// 任务执行结果返回json格式字符串 string ExecuteCmd(string revitCmd, string param, HashSet filePathList); } }