Переименование
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
namespace mROA.CodegenTools
|
||||
{
|
||||
public class LiteralTemplateSection : ITemplateSection
|
||||
{
|
||||
private string _internalText;
|
||||
|
||||
public LiteralTemplateSection(string internalText, TemplateDocument context)
|
||||
{
|
||||
_internalText = internalText;
|
||||
Context = context;
|
||||
}
|
||||
|
||||
public TemplateDocument Context { get; set; }
|
||||
public int TargetLength { get; }
|
||||
|
||||
public string Bake()
|
||||
{
|
||||
return _internalText;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return _internalText;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user