Переименование

This commit is contained in:
2025-03-20 16:36:32 +03:00
parent 23e52788a0
commit e93a028bc4
7 changed files with 13 additions and 13 deletions
+14
View File
@@ -0,0 +1,14 @@
namespace mROA.CodegenTools
{
public interface ITemplateSection
{
TemplateDocument Context { get; set; }
int TargetLength { get; }
string Bake();
}
public interface ITagged : ITemplateSection
{
string Tag { get; }
}
}