Files

16 lines
311 B
C#
Raw Permalink Normal View History

2024-02-16 15:40:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-02-16 21:06:34 +08:00
namespace Yi.Framework.CodeGen.Domain.Handlers
2024-02-16 15:40:13 +08:00
{
public class HandledTemplate
{
public string TemplateStr { get; set; }
public string BuildPath { get; set; }
}
}