- using System.Collections.Generic;
- namespace clempaul.Dreamhost.ResponseData
- {
- class PSSettings
- {
- public void set(string name, string value)
- {
- this.values.Add(name, value);
- }
- public string get(string name)
- {
- return this.values[name];
- }
- public Dictionary<string, string> getValues()
- {
- return this.values;
- }
- }
- }