using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.Template.Abstract { public interface ITemplateProvider { /// /// 构建生成路径 /// string BuildPath { get; set; } /// /// 模板文件路径 /// string TemplatePath { get; set; } /// /// 备份文件路径 /// string BakPath { get; set; } /// /// 开始构建 /// /// void Build(); /// /// 生成备份 /// /// void Bak(); } }