Базовые классы для codegen-tools

This commit is contained in:
2025-03-19 23:18:26 +03:00
parent 0d17406b61
commit c36c2419a1
6 changed files with 150 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace mROA.CodegenTools
{
public interface ITemplatePart
{
TemplateDocument Context { get; set; }
string Bake();
}
public interface ITagged : ITemplatePart
{
string Tag { get; }
}
}