using System; using System.Collections.Generic; namespace Engine.DependencyTree { public class DependencyTemplate { public DependencyTemplate(string identifier, string className, Dictionary properties) { this._identifier = identifier; this._className = className; this._properties = properties; } public string Identifier { get { return this._identifier; } } public string ClassName { get { return this._className; } } public Dictionary Properties { get { return this._properties; } } private string _identifier; private string _className; private Dictionary _properties; } }