1. using System.Collections.Generic;
  2.  
  3. namespace clempaul.Dreamhost.ResponseData
  4. {
  5.     class PSSettings
  6.     {
  7.  
  8.         Dictionary<string, string> values = new Dictionary<string, string>();
  9.        
  10.         public void set(string name, string value)
  11.         {
  12.             this.values.Add(name, value);
  13.            
  14.         }
  15.  
  16.         public string get(string name)
  17.         {
  18.             return this.values[name];
  19.         }
  20.  
  21.         public Dictionary<string, string> getValues()
  22.         {
  23.             return this.values;
  24.         }
  25.     }
  26. }
  27.