using Volo.Abp.Application.Dtos; namespace Yi.Framework.CodeGun.Application.Contracts.Dtos.Template { public class TemplateDto : EntityDto { public Guid Id { get; set; } /// /// 模板字符串 /// public string TemplateStr { get; set; } = string.Empty; /// /// 生成路径 /// public string BuildPath { get; set; } /// /// 模板名称 /// public string Name { get; set; } /// /// 备注 /// public string? Remarks { get; set; } } }