using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Abp.Tool.Domain.Shared.Options { public class ToolOptions { /// /// 模块模板zip文件路径 /// public string ModuleTemplateFilePath { get; set; } /// /// 项目模板zip文件路径 /// public string ProjectTemplateFilePath { get; set; } /// /// 临时文件目录 /// public string TempDirPath { get; set; } } }