using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.PluginServiceInterface { public interface IWorkCatalog { bool IsOpenView { get; set; } void Open(); void SetWorksapce(string pDirectoryPath); /// /// 存放工作目录路径 /// string SaveWorkSapcePath { get; } /// /// 是否加载最近工程 /// bool IsLoadProject { get; set; } } }