public Template(string name, string content) { this.Name = name; this.Content = content; this.Variables = new ValuePool(); this.InnerTemplates = new Dictionary<string, Template>(); }
public Template() { this.Name = "Name"; this.Content = "Content"; this.Variables = new ValuePool(); this.InnerTemplates = new Dictionary<string, Template>(); }