You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
757 B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace Engine.DependencyTree
  4. {
  5. public class DependencyTemplate
  6. {
  7. public DependencyTemplate(string identifier, string className, Dictionary<string, string> properties)
  8. {
  9. this._identifier = identifier;
  10. this._className = className;
  11. this._properties = properties;
  12. }
  13. public string Identifier
  14. {
  15. get
  16. {
  17. return this._identifier;
  18. }
  19. }
  20. public string ClassName
  21. {
  22. get
  23. {
  24. return this._className;
  25. }
  26. }
  27. public Dictionary<string, string> Properties
  28. {
  29. get
  30. {
  31. return this._properties;
  32. }
  33. }
  34. private string _identifier;
  35. private string _className;
  36. private Dictionary<string, string> _properties;
  37. }
  38. }